Schema Documentation
PageToRevisionConnectionWhereArgs
Description
Arguments for filtering the PageToRevisionConnection 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 |
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. |
title - String | Title of the object |
Example
{"author":123,"authorIn":[4],"authorName":"abc123","authorNotIn":["4"],"dateQuery":DateQueryInput,"hasPassword":true,"id":987,"in":[4],"mimeType":"APPLICATION_MSWORD","name":"xyz789","nameIn":["xyz789"],"notIn":[4],"orderby":[PostObjectsConnectionOrderbyInput],"parent":4,"parentIn":[4],"parentNotIn":["4"],"password":"xyz789","search":"xyz789","stati":["AUTO_DRAFT"],"status":"AUTO_DRAFT","title":"xyz789"}