Schema Documentation
CategoryToPostConnectionWhereArgs
Description
Arguments for filtering the CategoryToPostConnection connection
Fields
| Input Field | Description | 
|---|---|
| author-Int | The user that's connected as the author of the object. Use the userId for the author object. | 
| authorIn-[ID] | Find objects connected to author(s) in the array of author's userIds | 
| authorName-String | Find objects connected to the author by the author's nicename | 
| authorNotIn-[ID] | Find objects NOT connected to author(s) in the array of author's userIds | 
| categoryId-Int | Category ID | 
| categoryIn-[ID] | Array of category IDs, used to display objects from one category OR another | 
| categoryName-String | Use Category Slug | 
| categoryNotIn-[ID] | Array of category IDs, used to display objects from one category OR another | 
| dateQuery-DateQueryInput | Filter the connection based on dates | 
| hasPassword-Boolean | True for objects with passwords; False for objects without passwords; null for all objects with or without passwords | 
| id-Int | Specific database ID of the object | 
| in-[ID] | Array of IDs for the objects to retrieve | 
| mimeType-MimeTypeEnum | Get objects with a specific mimeType property | 
| name-String | Slug / post_name of the object | 
| nameIn-[String] | Specify objects to retrieve. Use slugs | 
| notIn-[ID] | Specify IDs NOT to retrieve. If this is used in the same query as "in", it will be ignored | 
| orderby-[PostObjectsConnectionOrderbyInput] | What paramater to use to order the objects by. | 
| parent-ID | Use ID to return only children. Use 0 to return only top-level items | 
| parentIn-[ID] | Specify objects whose parent is in an array | 
| parentNotIn-[ID] | Specify posts whose parent is not in an array | 
| password-String | Show posts with a specific password. | 
| search-String | Show Posts based on a keyword search | 
| stati-[PostStatusEnum] | Retrieve posts where post status is in an array. | 
| status-PostStatusEnum | Show posts with a specific status. | 
| tag-String | Tag Slug | 
| tagId-String | Use Tag ID | 
| tagIn-[ID] | Array of tag IDs, used to display objects from one tag OR another | 
| tagNotIn-[ID] | Array of tag IDs, used to display objects from one tag OR another | 
| tagSlugAnd-[String] | Array of tag slugs, used to display objects from one tag AND another | 
| tagSlugIn-[String] | Array of tag slugs, used to include objects in ANY specified tags | 
| title-String | Title of the object | 
Example
{"author":987,"authorIn":["4"],"authorName":"xyz789","authorNotIn":["4"],"categoryId":123,"categoryIn":["4"],"categoryName":"xyz789","categoryNotIn":[4],"dateQuery":DateQueryInput,"hasPassword":true,"id":123,"in":["4"],"mimeType":"APPLICATION_MSWORD","name":"abc123","nameIn":["abc123"],"notIn":[4],"orderby":[PostObjectsConnectionOrderbyInput],"parent":"4","parentIn":[4],"parentNotIn":["4"],"password":"xyz789","search":"xyz789","stati":["AUTO_DRAFT"],"status":"AUTO_DRAFT","tag":"abc123","tagId":"xyz789","tagIn":["4"],"tagNotIn":[4],"tagSlugAnd":["xyz789"],"tagSlugIn":["xyz789"],"title":"xyz789"}