--- title: job tags: subscription --- --- **Request** ``` subscription MySubscription { jobs { id title isFeatured description company industryDetails { id icon typeOfIndustry } jobSkills { skill { id skill } } jobLocations{ city { cityName id } state { stateName id } } process status urgency totalVacancies creditPerVacancy filledVacancies disable } } ``` ``` subscription MySubscription { jobs(where: {company: {_eq: ""}}) { id title isFeatured description company industryDetails { id icon typeOfIndustry } jobSkills { skill { id skill } } jobLocations { city { cityName id } state { stateName id } } process status urgency totalVacancies creditPerVacancy filledVacancies disable } } ``` ``` (where: {title: {_ilike: "%%"}}) ``` ``` where: { _or: [ { name: { _ilike: $text } }, { email: { _ilike: $text } } ] } ) ``` **Description** All job post title -- text ? null company id -- match ``` { jobs(where: {_and: {company: {_eq: null}, _or: { title: {_ilike: null}, description: {_ilike: null}} }} , order_by: {created_at: asc, title: asc} ) { id title isFeatured description company industryDetails { id icon typeOfIndustry } jobSkills { skill { id skill } } jobLocations { city { cityName id } state { stateName id } } process status urgency totalVacancies creditPerVacancy filledVacancies disable created_at updated_at } } ``` --- **Header** ``` ``` **Response** ``` ``` **Description**