JetBrains / js-graphql-intellij-plugin

GraphQL language support for WebStorm, IntelliJ IDEA and other IDEs based on the IntelliJ Platform.
https://jimkyndemeyer.github.io/js-graphql-intellij-plugin/
MIT License
880 stars 97 forks source link

TypeError on introspection with Gridsome #254

Closed steebchen closed 5 years ago

steebchen commented 5 years ago

Version and Environment Details

Operation system: Linux Mint 18.2

IDE name and version: IntelliJ IDEA 2019.1.2 (Ultimate Edition) Build #IU-191.7141.44, built on May 7, 2019 JRE: 1.8.0_202-release-1483-b49 amd64 JVM: OpenJDK 64-Bit Server VM by JetBrains s.r.o

Plugin version: v2.1.0

Expected Behaviour

No error when introspecting a remote schema

Actual Behaviour

GraphQL IntelliJ says: TypeError: Cannot destructure property __path of 'undefined' or 'null'.

Full stacktrace:

Stacktrace ``` java.lang.IllegalArgumentException: Introspection query returned errors: [{"message":"Cannot destructure property `__path` of \u0027undefined\u0027 or \u0027null\u0027.","stringified":"TypeError: Cannot destructure property `__path` of \u0027undefined\u0027 or \u0027null\u0027."}] at com.intellij.lang.jsgraphql.ide.editor.GraphQLIntrospectionHelper.printIntrospectionJsonAsGraphQL(GraphQLIntrospectionHelper.java:231) at com.intellij.lang.jsgraphql.ide.editor.GraphQLIntrospectionHelper$2.lambda$run$0(GraphQLIntrospectionHelper.java:160) at com.intellij.openapi.application.TransactionGuardImpl$2.run(TransactionGuardImpl.java:315) at com.intellij.openapi.application.impl.LaterInvocator$FlushQueue.doRun(LaterInvocator.java:435) at com.intellij.openapi.application.impl.LaterInvocator$FlushQueue.runNextEvent(LaterInvocator.java:419) at com.intellij.openapi.application.impl.LaterInvocator$FlushQueue.run(LaterInvocator.java:403) at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:311) at java.awt.EventQueue.dispatchEventImpl(EventQueue.java:764) at java.awt.EventQueue.access$500(EventQueue.java:98) at java.awt.EventQueue$3.run(EventQueue.java:715) at java.awt.EventQueue$3.run(EventQueue.java:709) at java.security.AccessController.doPrivileged(Native Method) at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(ProtectionDomain.java:74) at java.awt.EventQueue.dispatchEvent(EventQueue.java:734) at com.intellij.ide.IdeEventQueue.defaultDispatchEvent(IdeEventQueue.java:729) at com.intellij.ide.IdeEventQueue._dispatchEvent(IdeEventQueue.java:678) at com.intellij.ide.IdeEventQueue.dispatchEvent(IdeEventQueue.java:373) at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:205) at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:116) at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:105) at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:101) at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:93) at java.awt.EventDispatchThread.run(EventDispatchThread.java:82) ```

Some more debug infos:

Curl introspect ``` curl 'http://localhost:8080/___graphql' -H 'User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:66.0) Gecko/20100101 Firefox/66.0' -H 'Accept: */*' -H 'Accept-Language: en,de;q=0.7,en-US;q=0.3' --compressed -H 'Referer: http://localhost:8080/___explore' -H 'content-type: application/json' -H 'X-Apollo-Tracing: 1' -H 'Origin: http://localhost:8080' -H 'DNT: 1' -H 'Connection: keep-alive' --data '{"operationName":"IntrospectionQuery","variables":{},"query":"query IntrospectionQuery {\n __schema {\n queryType {\n name\n }\n mutationType {\n name\n }\n subscriptionType {\n name\n }\n types {\n ...FullType\n }\n directives {\n name\n description\n locations\n args {\n ...InputValue\n }\n }\n }\n}\n\nfragment FullType on __Type {\n kind\n name\n description\n fields(includeDeprecated: true) {\n name\n description\n args {\n ...InputValue\n }\n type {\n ...TypeRef\n }\n isDeprecated\n deprecationReason\n }\n inputFields {\n ...InputValue\n }\n interfaces {\n ...TypeRef\n }\n enumValues(includeDeprecated: true) {\n name\n description\n isDeprecated\n deprecationReason\n }\n possibleTypes {\n ...TypeRef\n }\n}\n\nfragment InputValue on __InputValue {\n name\n description\n type {\n ...TypeRef\n }\n defaultValue\n}\n\nfragment TypeRef on __Type {\n kind\n name\n ofType {\n kind\n name\n ofType {\n kind\n name\n ofType {\n kind\n name\n ofType {\n kind\n name\n ofType {\n kind\n name\n ofType {\n kind\n name\n ofType {\n kind\n name\n }\n }\n }\n }\n }\n }\n }\n}\n"}' ```
Curl introspect schema result ``` {"data":{"__schema":{"queryType":{"name":"Query"},"mutationType":null,"subscriptionType":null,"types":[{"kind":"OBJECT","name":"Query","description":null,"fields":[{"name":"page","description":null,"args":[{"name":"path","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Page","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"post","description":null,"args":[{"name":"id","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"_id","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"path","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"nullable","description":"Will return an error if not nullable.","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":"false"}],"type":{"kind":"OBJECT","name":"Post","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"tag","description":null,"args":[{"name":"id","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"_id","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"path","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"nullable","description":"Will return an error if not nullable.","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":"false"}],"type":{"kind":"OBJECT","name":"Tag","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"author","description":null,"args":[{"name":"id","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"_id","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"path","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"nullable","description":"Will return an error if not nullable.","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":"false"}],"type":{"kind":"OBJECT","name":"Author","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"allPage","description":null,"args":[{"name":"filter","description":"Filter for pages.","type":{"kind":"INPUT_OBJECT","name":"PageFilters","ofType":null},"defaultValue":null}],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"Page","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"allPost","description":"Connection to all Post nodes","args":[{"name":"sortBy","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":"\"date\""},{"name":"order","description":null,"type":{"kind":"ENUM","name":"SortOrderEnum","ofType":null},"defaultValue":"DESC"},{"name":"perPage","description":"Defaults to 25 when page is provided.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"skip","description":null,"type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":"0"},{"name":"limit","description":null,"type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"page","description":null,"type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"sort","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"SortArgument","ofType":null}},"defaultValue":null},{"name":"regex","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"filter","description":"Filter for Post nodes.","type":{"kind":"INPUT_OBJECT","name":"PostFilters","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"PostConnection","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"allTag","description":"Connection to all Tag nodes","args":[{"name":"sortBy","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":"\"date\""},{"name":"order","description":null,"type":{"kind":"ENUM","name":"SortOrderEnum","ofType":null},"defaultValue":"DESC"},{"name":"perPage","description":"Defaults to 25 when page is provided.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"skip","description":null,"type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":"0"},{"name":"limit","description":null,"type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"page","description":null,"type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"sort","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"SortArgument","ofType":null}},"defaultValue":null},{"name":"regex","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"filter","description":"Filter for Tag nodes.","type":{"kind":"INPUT_OBJECT","name":"TagFilters","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"TagConnection","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"allAuthor","description":"Connection to all Author nodes","args":[{"name":"sortBy","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":"\"date\""},{"name":"order","description":null,"type":{"kind":"ENUM","name":"SortOrderEnum","ofType":null},"defaultValue":"DESC"},{"name":"perPage","description":"Defaults to 25 when page is provided.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"skip","description":null,"type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":"0"},{"name":"limit","description":null,"type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"page","description":null,"type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"sort","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"SortArgument","ofType":null}},"defaultValue":null},{"name":"regex","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"filter","description":"Filter for Author nodes.","type":{"kind":"INPUT_OBJECT","name":"AuthorFilters","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"AuthorConnection","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"metaData","description":null,"args":[],"type":{"kind":"OBJECT","name":"MetaData","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"SCALAR","name":"String","description":"The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.","fields":null,"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Page","description":null,"fields":[{"name":"path","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"context","description":null,"args":[],"type":{"kind":"SCALAR","name":"JSON","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"SCALAR","name":"JSON","description":"The `JSON` scalar type represents JSON values as specified by [ECMA-404](http://www.ecma-international.org/publications/files/ECMA-ST/ECMA-404.pdf).","fields":null,"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"SCALAR","name":"Boolean","description":"The `Boolean` scalar type represents `true` or `false`.","fields":null,"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Post","description":null,"fields":[{"name":"path","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"fileInfo","description":null,"args":[],"type":{"kind":"OBJECT","name":"PostFileInfo","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"content","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"excerpt","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"title","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"date","description":null,"args":[{"name":"format","description":"Date format","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"locale","description":"Locale","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"SCALAR","name":"Date","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"author","description":null,"args":[],"type":{"kind":"OBJECT","name":"Author","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"tags","description":null,"args":[{"name":"sortBy","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"order","description":null,"type":{"kind":"ENUM","name":"SortOrderEnum","ofType":null},"defaultValue":"DESC"},{"name":"skip","description":null,"type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":"0"},{"name":"sort","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"SortArgument","ofType":null}},"defaultValue":null},{"name":"limit","description":null,"type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"Tag","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"slug","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"cover","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"fullscreen","description":null,"args":[],"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"headings","description":null,"args":[{"name":"depth","description":null,"type":{"kind":"ENUM","name":"RemarkHeadingLevels","ofType":null},"defaultValue":null},{"name":"stripTags","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":"true"}],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"RemarkHeading","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"timeToRead","description":null,"args":[{"name":"speed","description":"Words per minute","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":"230"}],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"fields","description":null,"args":[],"type":{"kind":"OBJECT","name":"PostFields","ofType":null},"isDeprecated":true,"deprecationReason":"Get field on node instead."},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"belongsTo","description":null,"args":[{"name":"sortBy","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":"\"date\""},{"name":"order","description":null,"type":{"kind":"ENUM","name":"SortOrderEnum","ofType":null},"defaultValue":"DESC"},{"name":"perPage","description":"Defaults to 25 when page is provided.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"skip","description":null,"type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":"0"},{"name":"limit","description":null,"type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"page","description":null,"type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"sort","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"SortArgument","ofType":null}},"defaultValue":null},{"name":"filter","description":"Filter for Post nodes.","type":{"kind":"INPUT_OBJECT","name":"PostBelongsToFilters","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"PostBelongsTo","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"_id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":true,"deprecationReason":"Use id instead."}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"INTERFACE","name":"Node","description":null,"fields":[{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":[{"kind":"OBJECT","name":"Post","ofType":null},{"kind":"OBJECT","name":"Author","ofType":null},{"kind":"OBJECT","name":"Tag","ofType":null}]},{"kind":"SCALAR","name":"ID","description":"The `ID` scalar type represents a unique identifier, often used to refetch an object or as key for a cache. The ID type appears in a JSON response as a String; however, it is not intended to be human-readable. When expected as an input type, any string (such as `\"4\"`) or integer (such as `4`) input value will be accepted as an ID.","fields":null,"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PostFileInfo","description":null,"fields":[{"name":"extension","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"directory","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"path","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"SCALAR","name":"Date","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Author","description":null,"fields":[{"name":"title","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"path","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"fields","description":null,"args":[],"type":{"kind":"OBJECT","name":"AuthorFields","ofType":null},"isDeprecated":true,"deprecationReason":"Get field on node instead."},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"belongsTo","description":null,"args":[{"name":"sortBy","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":"\"date\""},{"name":"order","description":null,"type":{"kind":"ENUM","name":"SortOrderEnum","ofType":null},"defaultValue":"DESC"},{"name":"perPage","description":"Defaults to 25 when page is provided.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"skip","description":null,"type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":"0"},{"name":"limit","description":null,"type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"page","description":null,"type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"sort","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"SortArgument","ofType":null}},"defaultValue":null},{"name":"filter","description":"Filter for Author nodes.","type":{"kind":"INPUT_OBJECT","name":"AuthorBelongsToFilters","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"AuthorBelongsTo","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"_id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":true,"deprecationReason":"Use id instead."}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"AuthorFields","description":null,"fields":[{"name":"title","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"path","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"SortOrderEnum","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"ASC","description":"Sort ascending","isDeprecated":false,"deprecationReason":null},{"name":"DESC","description":"Sort descending","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"SCALAR","name":"Int","description":"The `Int` scalar type represents non-fractional signed whole numeric values. Int can represent values between -(2^31) and 2^31 - 1. ","fields":null,"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"SortArgument","description":null,"fields":null,"inputFields":[{"name":"by","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":"\"date\""},{"name":"order","description":null,"type":{"kind":"ENUM","name":"SortOrderEnum","ofType":null},"defaultValue":"DESC"}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"AuthorBelongsToFilters","description":null,"fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"INPUT_OBJECT","name":"AuthorBelongsToFilterIdFilter","ofType":null},"defaultValue":null},{"name":"path","description":null,"type":{"kind":"INPUT_OBJECT","name":"AuthorBelongsToFilterPathFilter","ofType":null},"defaultValue":null},{"name":"typeName","description":null,"type":{"kind":"INPUT_OBJECT","name":"AuthorBelongsToFilterTypeName","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"AuthorBelongsToFilterIdFilter","description":"Filter AuthorBelongsToFilter nodes by id","fields":null,"inputFields":[{"name":"len","description":"Filter nodes which have a string property of specified length.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"eq","description":"Filter nodes by property of (strict) equality.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"ne","description":"Filter nodes by property not equal to provided value.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"regex","description":"Filter nodes by property matching provided regular expression.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"in","description":"Filter nodes by property matching any of the provided values.","type":{"kind":"LIST","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"nin","description":"Filter nodes by property not matching any of the provided values.","type":{"kind":"LIST","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"AuthorBelongsToFilterPathFilter","description":"Filter AuthorBelongsToFilter nodes by path","fields":null,"inputFields":[{"name":"len","description":"Filter nodes which have a string property of specified length.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"eq","description":"Filter nodes by property of (strict) equality.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"ne","description":"Filter nodes by property not equal to provided value.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"regex","description":"Filter nodes by property matching provided regular expression.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"in","description":"Filter nodes by property matching any of the provided values.","type":{"kind":"LIST","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"nin","description":"Filter nodes by property not matching any of the provided values.","type":{"kind":"LIST","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"AuthorBelongsToFilterTypeName","description":"Filter nodes by typeName.","fields":null,"inputFields":[{"name":"eq","description":null,"type":{"kind":"ENUM","name":"AuthorBelongsToTypeNameEnum","ofType":null},"defaultValue":null},{"name":"ne","description":null,"type":{"kind":"ENUM","name":"AuthorBelongsToTypeNameEnum","ofType":null},"defaultValue":null},{"name":"regex","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"in","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"ENUM","name":"AuthorBelongsToTypeNameEnum","ofType":null}},"defaultValue":null},{"name":"nin","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"ENUM","name":"AuthorBelongsToTypeNameEnum","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"AuthorBelongsToTypeNameEnum","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"Post","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"Tag","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"Author","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"AuthorBelongsTo","description":null,"fields":[{"name":"totalCount","description":null,"args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PageInfo","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"edges","description":null,"args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"AuthorBelongsToEdge","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PageInfo","description":null,"fields":[{"name":"perPage","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"currentPage","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalPages","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalItems","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"hasPreviousPage","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"hasNextPage","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"isFirst","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"isLast","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"AuthorBelongsToEdge","description":null,"fields":[{"name":"node","description":null,"args":[],"type":{"kind":"UNION","name":"AuthorBelongsToUnion","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"next","description":null,"args":[],"type":{"kind":"UNION","name":"AuthorBelongsToUnion","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"previous","description":null,"args":[],"type":{"kind":"UNION","name":"AuthorBelongsToUnion","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"UNION","name":"AuthorBelongsToUnion","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":[{"kind":"OBJECT","name":"Post","ofType":null},{"kind":"OBJECT","name":"Tag","ofType":null},{"kind":"OBJECT","name":"Author","ofType":null}]},{"kind":"OBJECT","name":"Tag","description":null,"fields":[{"name":"title","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"path","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"fields","description":null,"args":[],"type":{"kind":"OBJECT","name":"TagFields","ofType":null},"isDeprecated":true,"deprecationReason":"Get field on node instead."},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"belongsTo","description":null,"args":[{"name":"sortBy","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":"\"date\""},{"name":"order","description":null,"type":{"kind":"ENUM","name":"SortOrderEnum","ofType":null},"defaultValue":"DESC"},{"name":"perPage","description":"Defaults to 25 when page is provided.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"skip","description":null,"type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":"0"},{"name":"limit","description":null,"type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"page","description":null,"type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"sort","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"SortArgument","ofType":null}},"defaultValue":null},{"name":"filter","description":"Filter for Tag nodes.","type":{"kind":"INPUT_OBJECT","name":"TagBelongsToFilters","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"TagBelongsTo","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"_id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":true,"deprecationReason":"Use id instead."}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"TagFields","description":null,"fields":[{"name":"title","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"path","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"TagBelongsToFilters","description":null,"fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"INPUT_OBJECT","name":"TagBelongsToFilterIdFilter","ofType":null},"defaultValue":null},{"name":"path","description":null,"type":{"kind":"INPUT_OBJECT","name":"TagBelongsToFilterPathFilter","ofType":null},"defaultValue":null},{"name":"typeName","description":null,"type":{"kind":"INPUT_OBJECT","name":"TagBelongsToFilterTypeName","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"TagBelongsToFilterIdFilter","description":"Filter TagBelongsToFilter nodes by id","fields":null,"inputFields":[{"name":"len","description":"Filter nodes which have a string property of specified length.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"eq","description":"Filter nodes by property of (strict) equality.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"ne","description":"Filter nodes by property not equal to provided value.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"regex","description":"Filter nodes by property matching provided regular expression.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"in","description":"Filter nodes by property matching any of the provided values.","type":{"kind":"LIST","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"nin","description":"Filter nodes by property not matching any of the provided values.","type":{"kind":"LIST","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"TagBelongsToFilterPathFilter","description":"Filter TagBelongsToFilter nodes by path","fields":null,"inputFields":[{"name":"len","description":"Filter nodes which have a string property of specified length.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"eq","description":"Filter nodes by property of (strict) equality.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"ne","description":"Filter nodes by property not equal to provided value.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"regex","description":"Filter nodes by property matching provided regular expression.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"in","description":"Filter nodes by property matching any of the provided values.","type":{"kind":"LIST","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"nin","description":"Filter nodes by property not matching any of the provided values.","type":{"kind":"LIST","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"TagBelongsToFilterTypeName","description":"Filter nodes by typeName.","fields":null,"inputFields":[{"name":"eq","description":null,"type":{"kind":"ENUM","name":"TagBelongsToTypeNameEnum","ofType":null},"defaultValue":null},{"name":"ne","description":null,"type":{"kind":"ENUM","name":"TagBelongsToTypeNameEnum","ofType":null},"defaultValue":null},{"name":"regex","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"in","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"ENUM","name":"TagBelongsToTypeNameEnum","ofType":null}},"defaultValue":null},{"name":"nin","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"ENUM","name":"TagBelongsToTypeNameEnum","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"TagBelongsToTypeNameEnum","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"Post","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"Tag","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"Author","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"TagBelongsTo","description":null,"fields":[{"name":"totalCount","description":null,"args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PageInfo","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"edges","description":null,"args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"TagBelongsToEdge","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"TagBelongsToEdge","description":null,"fields":[{"name":"node","description":null,"args":[],"type":{"kind":"UNION","name":"TagBelongsToUnion","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"next","description":null,"args":[],"type":{"kind":"UNION","name":"TagBelongsToUnion","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"previous","description":null,"args":[],"type":{"kind":"UNION","name":"TagBelongsToUnion","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"UNION","name":"TagBelongsToUnion","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":[{"kind":"OBJECT","name":"Post","ofType":null},{"kind":"OBJECT","name":"Tag","ofType":null},{"kind":"OBJECT","name":"Author","ofType":null}]},{"kind":"ENUM","name":"RemarkHeadingLevels","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"h1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"h2","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"h3","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"h4","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"h5","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"h6","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"RemarkHeading","description":null,"fields":[{"name":"depth","description":null,"args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"value","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"anchor","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PostFields","description":null,"fields":[{"name":"path","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"fileInfo","description":null,"args":[],"type":{"kind":"OBJECT","name":"PostFileInfo","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"content","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"excerpt","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"title","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"date","description":null,"args":[{"name":"format","description":"Date format","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"locale","description":"Locale","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"SCALAR","name":"Date","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"author","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"tags","description":null,"args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"slug","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"cover","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"fullscreen","description":null,"args":[],"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"PostBelongsToFilters","description":null,"fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"INPUT_OBJECT","name":"PostBelongsToFilterIdFilter","ofType":null},"defaultValue":null},{"name":"path","description":null,"type":{"kind":"INPUT_OBJECT","name":"PostBelongsToFilterPathFilter","ofType":null},"defaultValue":null},{"name":"typeName","description":null,"type":{"kind":"INPUT_OBJECT","name":"PostBelongsToFilterTypeName","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"PostBelongsToFilterIdFilter","description":"Filter PostBelongsToFilter nodes by id","fields":null,"inputFields":[{"name":"len","description":"Filter nodes which have a string property of specified length.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"eq","description":"Filter nodes by property of (strict) equality.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"ne","description":"Filter nodes by property not equal to provided value.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"regex","description":"Filter nodes by property matching provided regular expression.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"in","description":"Filter nodes by property matching any of the provided values.","type":{"kind":"LIST","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"nin","description":"Filter nodes by property not matching any of the provided values.","type":{"kind":"LIST","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"PostBelongsToFilterPathFilter","description":"Filter PostBelongsToFilter nodes by path","fields":null,"inputFields":[{"name":"len","description":"Filter nodes which have a string property of specified length.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"eq","description":"Filter nodes by property of (strict) equality.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"ne","description":"Filter nodes by property not equal to provided value.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"regex","description":"Filter nodes by property matching provided regular expression.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"in","description":"Filter nodes by property matching any of the provided values.","type":{"kind":"LIST","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"nin","description":"Filter nodes by property not matching any of the provided values.","type":{"kind":"LIST","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"PostBelongsToFilterTypeName","description":"Filter nodes by typeName.","fields":null,"inputFields":[{"name":"eq","description":null,"type":{"kind":"ENUM","name":"PostBelongsToTypeNameEnum","ofType":null},"defaultValue":null},{"name":"ne","description":null,"type":{"kind":"ENUM","name":"PostBelongsToTypeNameEnum","ofType":null},"defaultValue":null},{"name":"regex","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"in","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"ENUM","name":"PostBelongsToTypeNameEnum","ofType":null}},"defaultValue":null},{"name":"nin","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"ENUM","name":"PostBelongsToTypeNameEnum","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"PostBelongsToTypeNameEnum","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"Post","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"Tag","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"Author","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"PostBelongsTo","description":null,"fields":[{"name":"totalCount","description":null,"args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PageInfo","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"edges","description":null,"args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"PostBelongsToEdge","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PostBelongsToEdge","description":null,"fields":[{"name":"node","description":null,"args":[],"type":{"kind":"UNION","name":"PostBelongsToUnion","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"next","description":null,"args":[],"type":{"kind":"UNION","name":"PostBelongsToUnion","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"previous","description":null,"args":[],"type":{"kind":"UNION","name":"PostBelongsToUnion","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"UNION","name":"PostBelongsToUnion","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":[{"kind":"OBJECT","name":"Post","ofType":null},{"kind":"OBJECT","name":"Tag","ofType":null},{"kind":"OBJECT","name":"Author","ofType":null}]},{"kind":"INPUT_OBJECT","name":"PageFilters","description":null,"fields":null,"inputFields":[{"name":"path","description":null,"type":{"kind":"INPUT_OBJECT","name":"PageFilterPathFilter","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"PageFilterPathFilter","description":"Filter PageFilter nodes by path","fields":null,"inputFields":[{"name":"len","description":"Filter nodes which have a string property of specified length.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"eq","description":"Filter nodes by property of (strict) equality.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"ne","description":"Filter nodes by property not equal to provided value.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"regex","description":"Filter nodes by property matching provided regular expression.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"in","description":"Filter nodes by property matching any of the provided values.","type":{"kind":"LIST","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"nin","description":"Filter nodes by property not matching any of the provided values.","type":{"kind":"LIST","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"PostFilters","description":null,"fields":null,"inputFields":[{"name":"path","description":null,"type":{"kind":"INPUT_OBJECT","name":"PostFilterPathFilter","ofType":null},"defaultValue":null},{"name":"fileInfo","description":null,"type":{"kind":"INPUT_OBJECT","name":"PostFilterFileInfoFilter__Object","ofType":null},"defaultValue":null},{"name":"content","description":null,"type":{"kind":"INPUT_OBJECT","name":"PostFilterContentFilter","ofType":null},"defaultValue":null},{"name":"excerpt","description":null,"type":{"kind":"INPUT_OBJECT","name":"PostFilterExcerptFilter","ofType":null},"defaultValue":null},{"name":"title","description":null,"type":{"kind":"INPUT_OBJECT","name":"PostFilterTitleFilter","ofType":null},"defaultValue":null},{"name":"description","description":null,"type":{"kind":"INPUT_OBJECT","name":"PostFilterDescriptionFilter","ofType":null},"defaultValue":null},{"name":"date","description":null,"type":{"kind":"INPUT_OBJECT","name":"PostFilterDateFilter","ofType":null},"defaultValue":null},{"name":"author","description":null,"type":{"kind":"INPUT_OBJECT","name":"PostFilterAuthorFilter","ofType":null},"defaultValue":null},{"name":"tags","description":null,"type":{"kind":"INPUT_OBJECT","name":"PostFilterTagsFilter","ofType":null},"defaultValue":null},{"name":"slug","description":null,"type":{"kind":"INPUT_OBJECT","name":"PostFilterSlugFilter","ofType":null},"defaultValue":null},{"name":"cover","description":null,"type":{"kind":"INPUT_OBJECT","name":"PostFilterCoverFilter","ofType":null},"defaultValue":null},{"name":"fullscreen","description":null,"type":{"kind":"INPUT_OBJECT","name":"PostFilterFullscreenFilter","ofType":null},"defaultValue":null},{"name":"id","description":null,"type":{"kind":"INPUT_OBJECT","name":"PostFilterIdFilter","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"PostFilterPathFilter","description":"Filter PostFilter nodes by path","fields":null,"inputFields":[{"name":"len","description":"Filter nodes which have a string property of specified length.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"eq","description":"Filter nodes by property of (strict) equality.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"ne","description":"Filter nodes by property not equal to provided value.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"regex","description":"Filter nodes by property matching provided regular expression.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"in","description":"Filter nodes by property matching any of the provided values.","type":{"kind":"LIST","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"nin","description":"Filter nodes by property not matching any of the provided values.","type":{"kind":"LIST","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"PostFilterFileInfoFilter__Object","description":null,"fields":null,"inputFields":[{"name":"extension","description":null,"type":{"kind":"INPUT_OBJECT","name":"PostFilterFileInfoExtensionFilter","ofType":null},"defaultValue":null},{"name":"directory","description":null,"type":{"kind":"INPUT_OBJECT","name":"PostFilterFileInfoDirectoryFilter","ofType":null},"defaultValue":null},{"name":"path","description":null,"type":{"kind":"INPUT_OBJECT","name":"PostFilterFileInfoPathFilter","ofType":null},"defaultValue":null},{"name":"name","description":null,"type":{"kind":"INPUT_OBJECT","name":"PostFilterFileInfoNameFilter","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"PostFilterFileInfoExtensionFilter","description":"Filter PostFilter nodes by fileInfo extension","fields":null,"inputFields":[{"name":"len","description":"Filter nodes which have a string property of specified length.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"eq","description":"Filter nodes by property of (strict) equality.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"ne","description":"Filter nodes by property not equal to provided value.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"regex","description":"Filter nodes by property matching provided regular expression.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"in","description":"Filter nodes by property matching any of the provided values.","type":{"kind":"LIST","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"nin","description":"Filter nodes by property not matching any of the provided values.","type":{"kind":"LIST","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"PostFilterFileInfoDirectoryFilter","description":"Filter PostFilter nodes by fileInfo directory","fields":null,"inputFields":[{"name":"len","description":"Filter nodes which have a string property of specified length.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"eq","description":"Filter nodes by property of (strict) equality.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"ne","description":"Filter nodes by property not equal to provided value.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"regex","description":"Filter nodes by property matching provided regular expression.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"in","description":"Filter nodes by property matching any of the provided values.","type":{"kind":"LIST","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"nin","description":"Filter nodes by property not matching any of the provided values.","type":{"kind":"LIST","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"PostFilterFileInfoPathFilter","description":"Filter PostFilter nodes by fileInfo path","fields":null,"inputFields":[{"name":"len","description":"Filter nodes which have a string property of specified length.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"eq","description":"Filter nodes by property of (strict) equality.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"ne","description":"Filter nodes by property not equal to provided value.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"regex","description":"Filter nodes by property matching provided regular expression.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"in","description":"Filter nodes by property matching any of the provided values.","type":{"kind":"LIST","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"nin","description":"Filter nodes by property not matching any of the provided values.","type":{"kind":"LIST","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"PostFilterFileInfoNameFilter","description":"Filter PostFilter nodes by fileInfo name","fields":null,"inputFields":[{"name":"len","description":"Filter nodes which have a string property of specified length.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"eq","description":"Filter nodes by property of (strict) equality.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"ne","description":"Filter nodes by property not equal to provided value.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"regex","description":"Filter nodes by property matching provided regular expression.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"in","description":"Filter nodes by property matching any of the provided values.","type":{"kind":"LIST","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"nin","description":"Filter nodes by property not matching any of the provided values.","type":{"kind":"LIST","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"PostFilterContentFilter","description":"Filter PostFilter nodes by content","fields":null,"inputFields":[{"name":"len","description":"Filter nodes which have a string property of specified length.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"eq","description":"Filter nodes by property of (strict) equality.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"ne","description":"Filter nodes by property not equal to provided value.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"regex","description":"Filter nodes by property matching provided regular expression.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"in","description":"Filter nodes by property matching any of the provided values.","type":{"kind":"LIST","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"nin","description":"Filter nodes by property not matching any of the provided values.","type":{"kind":"LIST","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"PostFilterExcerptFilter","description":"Filter PostFilter nodes by excerpt","fields":null,"inputFields":[{"name":"len","description":"Filter nodes which have a string property of specified length.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"eq","description":"Filter nodes by property of (strict) equality.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"ne","description":"Filter nodes by property not equal to provided value.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"regex","description":"Filter nodes by property matching provided regular expression.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"in","description":"Filter nodes by property matching any of the provided values.","type":{"kind":"LIST","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"nin","description":"Filter nodes by property not matching any of the provided values.","type":{"kind":"LIST","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"PostFilterTitleFilter","description":"Filter PostFilter nodes by title","fields":null,"inputFields":[{"name":"len","description":"Filter nodes which have a string property of specified length.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"eq","description":"Filter nodes by property of (strict) equality.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"ne","description":"Filter nodes by property not equal to provided value.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"regex","description":"Filter nodes by property matching provided regular expression.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"in","description":"Filter nodes by property matching any of the provided values.","type":{"kind":"LIST","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"nin","description":"Filter nodes by property not matching any of the provided values.","type":{"kind":"LIST","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"PostFilterDescriptionFilter","description":"Filter PostFilter nodes by description","fields":null,"inputFields":[{"name":"len","description":"Filter nodes which have a string property of specified length.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"eq","description":"Filter nodes by property of (strict) equality.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"ne","description":"Filter nodes by property not equal to provided value.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"regex","description":"Filter nodes by property matching provided regular expression.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"in","description":"Filter nodes by property matching any of the provided values.","type":{"kind":"LIST","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"nin","description":"Filter nodes by property not matching any of the provided values.","type":{"kind":"LIST","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"PostFilterDateFilter","description":"Filter PostFilter nodes by date","fields":null,"inputFields":[{"name":"dteq","description":"Filter nodes by date property equal to provided date value.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"gt","description":"Filter nodes by property greater than provided value.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"gte","description":"Filter nodes by property greater or equal to provided value.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"lt","description":"Filter nodes by property less than provided value.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"lte","description":"Filter nodes by property less than or equal to provided value.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"between","description":"Filter nodes by property between provided values.","type":{"kind":"LIST","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"PostFilterAuthorFilter","description":"Filter PostFilter nodes by author","fields":null,"inputFields":[{"name":"len","description":"Filter nodes which have a string property of specified length.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"eq","description":"Filter nodes by property of (strict) equality.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"ne","description":"Filter nodes by property not equal to provided value.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"regex","description":"Filter nodes by property matching provided regular expression.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"in","description":"Filter nodes by property matching any of the provided values.","type":{"kind":"LIST","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"nin","description":"Filter nodes by property not matching any of the provided values.","type":{"kind":"LIST","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"PostFilterTagsFilter","description":"Filter PostFilter nodes by tags","fields":null,"inputFields":[{"name":"size","description":"Filter nodes which have an array property of specified size.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"contains","description":"Filter nodes by property containing the provided value.","type":{"kind":"LIST","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"containsAny","description":"Filter nodes by property containing any of the provided values.","type":{"kind":"LIST","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"containsNone","description":"Filter nodes by property containing none of the provided values.","type":{"kind":"LIST","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"PostFilterSlugFilter","description":"Filter PostFilter nodes by slug","fields":null,"inputFields":[{"name":"len","description":"Filter nodes which have a string property of specified length.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"eq","description":"Filter nodes by property of (strict) equality.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"ne","description":"Filter nodes by property not equal to provided value.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"regex","description":"Filter nodes by property matching provided regular expression.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"in","description":"Filter nodes by property matching any of the provided values.","type":{"kind":"LIST","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"nin","description":"Filter nodes by property not matching any of the provided values.","type":{"kind":"LIST","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"PostFilterCoverFilter","description":"Filter PostFilter nodes by cover","fields":null,"inputFields":[{"name":"len","description":"Filter nodes which have a string property of specified length.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"eq","description":"Filter nodes by property of (strict) equality.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"ne","description":"Filter nodes by property not equal to provided value.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"regex","description":"Filter nodes by property matching provided regular expression.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"in","description":"Filter nodes by property matching any of the provided values.","type":{"kind":"LIST","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"nin","description":"Filter nodes by property not matching any of the provided values.","type":{"kind":"LIST","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"PostFilterFullscreenFilter","description":null,"fields":null,"inputFields":[{"name":"eq","description":"Filter nodes by property of (strict) equality.","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"ne","description":"Filter nodes by property not equal to provided value.","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"in","description":"Filter nodes by property matching any of the provided values.","type":{"kind":"LIST","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"defaultValue":null},{"name":"nin","description":"Filter nodes by property not matching any of the provided values.","type":{"kind":"LIST","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"PostFilterIdFilter","description":"Filter PostFilter nodes by id","fields":null,"inputFields":[{"name":"len","description":"Filter nodes which have a string property of specified length.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"eq","description":"Filter nodes by property of (strict) equality.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"ne","description":"Filter nodes by property not equal to provided value.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"regex","description":"Filter nodes by property matching provided regular expression.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"in","description":"Filter nodes by property matching any of the provided values.","type":{"kind":"LIST","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"nin","description":"Filter nodes by property not matching any of the provided values.","type":{"kind":"LIST","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PostConnection","description":null,"fields":[{"name":"totalCount","description":null,"args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PageInfo","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"edges","description":null,"args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"PostEdge","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PostEdge","description":null,"fields":[{"name":"node","description":null,"args":[],"type":{"kind":"OBJECT","name":"Post","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"next","description":null,"args":[],"type":{"kind":"OBJECT","name":"Post","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"previous","description":null,"args":[],"type":{"kind":"OBJECT","name":"Post","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"TagFilters","description":null,"fields":null,"inputFields":[{"name":"title","description":null,"type":{"kind":"INPUT_OBJECT","name":"TagFilterTitleFilter","ofType":null},"defaultValue":null},{"name":"path","description":null,"type":{"kind":"INPUT_OBJECT","name":"TagFilterPathFilter","ofType":null},"defaultValue":null},{"name":"id","description":null,"type":{"kind":"INPUT_OBJECT","name":"TagFilterIdFilter","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"TagFilterTitleFilter","description":"Filter TagFilter nodes by title","fields":null,"inputFields":[{"name":"len","description":"Filter nodes which have a string property of specified length.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"eq","description":"Filter nodes by property of (strict) equality.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"ne","description":"Filter nodes by property not equal to provided value.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"regex","description":"Filter nodes by property matching provided regular expression.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"in","description":"Filter nodes by property matching any of the provided values.","type":{"kind":"LIST","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"nin","description":"Filter nodes by property not matching any of the provided values.","type":{"kind":"LIST","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"TagFilterPathFilter","description":"Filter TagFilter nodes by path","fields":null,"inputFields":[{"name":"len","description":"Filter nodes which have a string property of specified length.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"eq","description":"Filter nodes by property of (strict) equality.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"ne","description":"Filter nodes by property not equal to provided value.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"regex","description":"Filter nodes by property matching provided regular expression.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"in","description":"Filter nodes by property matching any of the provided values.","type":{"kind":"LIST","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"nin","description":"Filter nodes by property not matching any of the provided values.","type":{"kind":"LIST","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"TagFilterIdFilter","description":"Filter TagFilter nodes by id","fields":null,"inputFields":[{"name":"len","description":"Filter nodes which have a string property of specified length.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"eq","description":"Filter nodes by property of (strict) equality.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"ne","description":"Filter nodes by property not equal to provided value.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"regex","description":"Filter nodes by property matching provided regular expression.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"in","description":"Filter nodes by property matching any of the provided values.","type":{"kind":"LIST","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"nin","description":"Filter nodes by property not matching any of the provided values.","type":{"kind":"LIST","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"TagConnection","description":null,"fields":[{"name":"totalCount","description":null,"args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PageInfo","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"edges","description":null,"args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"TagEdge","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"TagEdge","description":null,"fields":[{"name":"node","description":null,"args":[],"type":{"kind":"OBJECT","name":"Tag","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"next","description":null,"args":[],"type":{"kind":"OBJECT","name":"Tag","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"previous","description":null,"args":[],"type":{"kind":"OBJECT","name":"Tag","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"AuthorFilters","description":null,"fields":null,"inputFields":[{"name":"title","description":null,"type":{"kind":"INPUT_OBJECT","name":"AuthorFilterTitleFilter","ofType":null},"defaultValue":null},{"name":"path","description":null,"type":{"kind":"INPUT_OBJECT","name":"AuthorFilterPathFilter","ofType":null},"defaultValue":null},{"name":"id","description":null,"type":{"kind":"INPUT_OBJECT","name":"AuthorFilterIdFilter","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"AuthorFilterTitleFilter","description":"Filter AuthorFilter nodes by title","fields":null,"inputFields":[{"name":"len","description":"Filter nodes which have a string property of specified length.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"eq","description":"Filter nodes by property of (strict) equality.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"ne","description":"Filter nodes by property not equal to provided value.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"regex","description":"Filter nodes by property matching provided regular expression.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"in","description":"Filter nodes by property matching any of the provided values.","type":{"kind":"LIST","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"nin","description":"Filter nodes by property not matching any of the provided values.","type":{"kind":"LIST","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"AuthorFilterPathFilter","description":"Filter AuthorFilter nodes by path","fields":null,"inputFields":[{"name":"len","description":"Filter nodes which have a string property of specified length.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"eq","description":"Filter nodes by property of (strict) equality.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"ne","description":"Filter nodes by property not equal to provided value.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"regex","description":"Filter nodes by property matching provided regular expression.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"in","description":"Filter nodes by property matching any of the provided values.","type":{"kind":"LIST","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"nin","description":"Filter nodes by property not matching any of the provided values.","type":{"kind":"LIST","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"AuthorFilterIdFilter","description":"Filter AuthorFilter nodes by id","fields":null,"inputFields":[{"name":"len","description":"Filter nodes which have a string property of specified length.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"eq","description":"Filter nodes by property of (strict) equality.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"ne","description":"Filter nodes by property not equal to provided value.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"regex","description":"Filter nodes by property matching provided regular expression.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"in","description":"Filter nodes by property matching any of the provided values.","type":{"kind":"LIST","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"nin","description":"Filter nodes by property not matching any of the provided values.","type":{"kind":"LIST","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"AuthorConnection","description":null,"fields":[{"name":"totalCount","description":null,"args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PageInfo","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"edges","description":null,"args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"AuthorEdge","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"AuthorEdge","description":null,"fields":[{"name":"node","description":null,"args":[],"type":{"kind":"OBJECT","name":"Author","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"next","description":null,"args":[],"type":{"kind":"OBJECT","name":"Author","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"previous","description":null,"args":[],"type":{"kind":"OBJECT","name":"Author","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"MetaData","description":null,"fields":[{"name":"siteName","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"siteDescription","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"siteUrl","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"pathPrefix","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"__Schema","description":"A GraphQL Schema defines the capabilities of a GraphQL server. It exposes all available types and directives on the server, as well as the entry points for query, mutation, and subscription operations.","fields":[{"name":"types","description":"A list of all types supported by this server.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__Type","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"queryType","description":"The type that query operations will be rooted at.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__Type","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"mutationType","description":"If this server supports mutation, the type that mutation operations will be rooted at.","args":[],"type":{"kind":"OBJECT","name":"__Type","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"subscriptionType","description":"If this server support subscription, the type that subscription operations will be rooted at.","args":[],"type":{"kind":"OBJECT","name":"__Type","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"directives","description":"A list of all directives supported by this server.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__Directive","ofType":null}}}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"__Type","description":"The fundamental unit of any GraphQL Schema is the type. There are many kinds of types in GraphQL as represented by the `__TypeKind` enum.\n\nDepending on the kind of a type, certain fields describe information about that type. Scalar types provide no information beyond a name and description, while Enum types provide their values. Object and Interface types provide the fields they describe. Abstract types, Union and Interface, provide the Object types possible at runtime. List and NonNull types compose other types.","fields":[{"name":"kind","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"__TypeKind","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"fields","description":null,"args":[{"name":"includeDeprecated","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":"false"}],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__Field","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"interfaces","description":null,"args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__Type","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"possibleTypes","description":null,"args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__Type","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"enumValues","description":null,"args":[{"name":"includeDeprecated","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":"false"}],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__EnumValue","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"inputFields","description":null,"args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__InputValue","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"ofType","description":null,"args":[],"type":{"kind":"OBJECT","name":"__Type","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"__TypeKind","description":"An enum describing what kind of type a given `__Type` is.","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"SCALAR","description":"Indicates this type is a scalar.","isDeprecated":false,"deprecationReason":null},{"name":"OBJECT","description":"Indicates this type is an object. `fields` and `interfaces` are valid fields.","isDeprecated":false,"deprecationReason":null},{"name":"INTERFACE","description":"Indicates this type is an interface. `fields` and `possibleTypes` are valid fields.","isDeprecated":false,"deprecationReason":null},{"name":"UNION","description":"Indicates this type is a union. `possibleTypes` is a valid field.","isDeprecated":false,"deprecationReason":null},{"name":"ENUM","description":"Indicates this type is an enum. `enumValues` is a valid field.","isDeprecated":false,"deprecationReason":null},{"name":"INPUT_OBJECT","description":"Indicates this type is an input object. `inputFields` is a valid field.","isDeprecated":false,"deprecationReason":null},{"name":"LIST","description":"Indicates this type is a list. `ofType` is a valid field.","isDeprecated":false,"deprecationReason":null},{"name":"NON_NULL","description":"Indicates this type is a non-null. `ofType` is a valid field.","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"__Field","description":"Object and Interface types are described by a list of Fields, each of which has a name, potentially a list of arguments, and a return type.","fields":[{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"args","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__InputValue","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"type","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__Type","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"isDeprecated","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deprecationReason","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"__InputValue","description":"Arguments provided to Fields or Directives and the input fields of an InputObject are represented as Input Values which describe their type and optionally a default value.","fields":[{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"type","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__Type","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"defaultValue","description":"A GraphQL-formatted string representing the default value for this input value.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"__EnumValue","description":"One possible value for a given Enum. Enum values are unique values, not a placeholder for a string or numeric value. However an Enum value is returned in a JSON response as a string.","fields":[{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"isDeprecated","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deprecationReason","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"__Directive","description":"A Directive provides a way to describe alternate runtime execution and type validation behavior in a GraphQL document.\n\nIn some cases, you need to provide options to alter GraphQL's execution behavior in ways field arguments will not suffice, such as conditionally including or skipping a field. Directives provide this by describing additional information to the executor.","fields":[{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"locations","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"__DirectiveLocation","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"args","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__InputValue","ofType":null}}}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"__DirectiveLocation","description":"A Directive can be adjacent to many parts of the GraphQL language, a __DirectiveLocation describes one such possible adjacencies.","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"QUERY","description":"Location adjacent to a query operation.","isDeprecated":false,"deprecationReason":null},{"name":"MUTATION","description":"Location adjacent to a mutation operation.","isDeprecated":false,"deprecationReason":null},{"name":"SUBSCRIPTION","description":"Location adjacent to a subscription operation.","isDeprecated":false,"deprecationReason":null},{"name":"FIELD","description":"Location adjacent to a field.","isDeprecated":false,"deprecationReason":null},{"name":"FRAGMENT_DEFINITION","description":"Location adjacent to a fragment definition.","isDeprecated":false,"deprecationReason":null},{"name":"FRAGMENT_SPREAD","description":"Location adjacent to a fragment spread.","isDeprecated":false,"deprecationReason":null},{"name":"INLINE_FRAGMENT","description":"Location adjacent to an inline fragment.","isDeprecated":false,"deprecationReason":null},{"name":"VARIABLE_DEFINITION","description":"Location adjacent to a variable definition.","isDeprecated":false,"deprecationReason":null},{"name":"SCHEMA","description":"Location adjacent to a schema definition.","isDeprecated":false,"deprecationReason":null},{"name":"SCALAR","description":"Location adjacent to a scalar definition.","isDeprecated":false,"deprecationReason":null},{"name":"OBJECT","description":"Location adjacent to an object type definition.","isDeprecated":false,"deprecationReason":null},{"name":"FIELD_DEFINITION","description":"Location adjacent to a field definition.","isDeprecated":false,"deprecationReason":null},{"name":"ARGUMENT_DEFINITION","description":"Location adjacent to an argument definition.","isDeprecated":false,"deprecationReason":null},{"name":"INTERFACE","description":"Location adjacent to an interface definition.","isDeprecated":false,"deprecationReason":null},{"name":"UNION","description":"Location adjacent to a union definition.","isDeprecated":false,"deprecationReason":null},{"name":"ENUM","description":"Location adjacent to an enum definition.","isDeprecated":false,"deprecationReason":null},{"name":"ENUM_VALUE","description":"Location adjacent to an enum value definition.","isDeprecated":false,"deprecationReason":null},{"name":"INPUT_OBJECT","description":"Location adjacent to an input object type definition.","isDeprecated":false,"deprecationReason":null},{"name":"INPUT_FIELD_DEFINITION","description":"Location adjacent to an input object field definition.","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null}],"directives":[{"name":"include","description":"Directs the executor to include this field or fragment only when the `if` argument is true.","locations":["FIELD","FRAGMENT_SPREAD","INLINE_FRAGMENT"],"args":[{"name":"if","description":"Included when true.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"defaultValue":null}]},{"name":"skip","description":"Directs the executor to skip this field or fragment when the `if` argument is true.","locations":["FIELD","FRAGMENT_SPREAD","INLINE_FRAGMENT"],"args":[{"name":"if","description":"Skipped when true.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"defaultValue":null}]},{"name":"deprecated","description":"Marks an element of a GraphQL schema as no longer supported.","locations":["FIELD_DEFINITION","ENUM_VALUE"],"args":[{"name":"reason","description":"Explains why this element was deprecated, usually also including a suggestion for how to access supported similar data. Formatted using the Markdown syntax (as specified by [CommonMark](https://commonmark.org/).","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":"\"No longer supported\""}]}]}}} ```

Steps to Reproduce / Link to Repo with Reproduction and Instructions

gridsome create gs-test hellocosmin/gridsome-starter-bleda
cd gs-test
npm install
npm run dev

.graphqlconfig:

{
    "schemaPath": "schema.graphql",
    "extensions": {
        "endpoints": {
            "graphql": {
                "url": "http://localhost:8080/___graphql",
                "introspect": true
            }
        }
    }
}
jimkyndemeyer commented 5 years ago

Hi Luca.

Thanks for using the plugin.

The plugin uses the introspection query that's defined in https://github.com/graphql-java/graphql-java/blob/master/src/main/java/graphql/introspection/IntrospectionQuery.java

The query itself validates according to the June 2018 GraphQL Spec, so there's really nothing to change in the plugin. Based on what I can gather from the response, the GraphQL endpoint accepts the query as valid (otherwise validation errors would be present in the response), but encounters an exception while processing the query ("Cannot destructure property '__path' of undefined or null").

I couldn't work out which GraphQL framework is in play, but it looks like that's where a bugfix is required.

Note that you can specify a custom GraphQL introspection query in the IntelliJ GraphQL settings page that may allow you to send an introspection query that your endpoint doesn't choke on.

I'm closing this issue based on nothing actionable here, but feel free to add comments or ask questions.

Best regards, Jim.

steebchen commented 5 years ago

Can you help me to pinpoint this issue? I have taken the IntrospectionQuery from this plugin's Java code, queried the GraphQL server with curl but could not reproduce the error:

$ curl 'http://localhost:8080/___graphql' -H 'User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:66.0) Gecko/20100101 Firefox/66.0' -H 'Accept: */*' -H 'Accept-Language: en,de;q=0.7,en-US;q=0.3' --compressed -H 'Referer: http://localhost:8080/___explore' -H 'content-type: application/json' -H 'X-Apollo-Tracing: 1' -H 'Origin: http://localhost:8080' -H 'DNT: 1' -H 'Connection: keep-alive' --data '{"operationName":"IntrospectionQuery","variables":{},"query":"query IntrospectionQuery { \n   __schema { \n     queryType { name } \n     mutationType { name } \n     subscriptionType { name } \n     types { \n       ...FullType \n     } \n     directives { \n       name \n       description \n       locations \n       args { \n         ...InputValue \n       } \n     } \n   } \n } \n  \n fragment FullType on __Type { \n   kind \n   name \n   description \n   fields(includeDeprecated: true) { \n     name \n     description \n     args { \n       ...InputValue \n     } \n     type { \n       ...TypeRef \n     } \n     isDeprecated \n     deprecationReason \n   } \n   inputFields { \n     ...InputValue \n   } \n   interfaces { \n     ...TypeRef \n   } \n   enumValues(includeDeprecated: true) { \n     name \n     description \n     isDeprecated \n     deprecationReason \n   } \n   possibleTypes { \n     ...TypeRef \n   } \n } \n  \n fragment InputValue on __InputValue { \n   name \n   description \n   type { ...TypeRef } \n   defaultValue \n } \n  \n fragment TypeRef on __Type { \n   kind \n   name \n   ofType { \n     kind \n     name \n     ofType { \n       kind \n       name \n       ofType { \n         kind \n         name \n         ofType { \n           kind \n           name \n           ofType { \n             kind \n             name \n             ofType { \n               kind \n               name \n               ofType { \n                 kind \n                 name \n               } \n             } \n           } \n         } \n       } \n     } \n   } \n }"}'
{"data":{"__schema":{"queryType":{"name":"Query"},"mutationType":null,"subscriptionType":null,"types":[{"kind":"OBJECT","name":"Query","description":null,"fields":[{"name":"page","description":null,"args":[{"name":"path","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Page","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"post","description":null,"args":[{"name":"id","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"_id","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"path","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"nullable","description":"Will return an error if not nullable.","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":"false"}],"type":{"kind":"OBJECT","name":"Post","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"tag","description":null,"args":[{"name":"id","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"_id","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"path","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"nullable","description":"Will return an error if not nullable.","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":"false"}],"type":{"kind":"OBJECT","name":"Tag","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"author","description":null,"args":[{"name":"id","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"_id","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"path","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"nullable","description":"Will return an error if not nullable.","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":"false"}],"type":{"kind":"OBJECT","name":"Author","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"allPage","description":null,"args":[{"name":"filter","description":"Filter for pages.","type":{"kind":"INPUT_OBJECT","name":"PageFilters","ofType":null},"defaultValue":null}],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"Page","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"allPost","description":"Connection to all Post nodes","args":[{"name":"sortBy","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":"\"date\""},{"name":"order","description":null,"type":{"kind":"ENUM","name":"SortOrderEnum","ofType":null},"defaultValue":"DESC"},{"name":"perPage","description":"Defaults to 25 when page is provided.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"skip","description":null,"type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":"0"},{"name":"limit","description":null,"type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"page","description":null,"type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"sort","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"SortArgument","ofType":null}},"defaultValue":null},{"name":"regex","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"filter","description":"Filter for Post nodes.","type":{"kind":"INPUT_OBJECT","name":"PostFilters","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"PostConnection","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"allTag","description":"Connection to all Tag nodes","args":[{"name":"sortBy","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":"\"date\""},{"name":"order","description":null,"type":{"kind":"ENUM","name":"SortOrderEnum","ofType":null},"defaultValue":"DESC"},{"name":"perPage","description":"Defaults to 25 when page is provided.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"skip","description":null,"type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":"0"},{"name":"limit","description":null,"type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"page","description":null,"type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"sort","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"SortArgument","ofType":null}},"defaultValue":null},{"name":"regex","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"filter","description":"Filter for Tag nodes.","type":{"kind":"INPUT_OBJECT","name":"TagFilters","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"TagConnection","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"allAuthor","description":"Connection to all Author nodes","args":[{"name":"sortBy","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":"\"date\""},{"name":"order","description":null,"type":{"kind":"ENUM","name":"SortOrderEnum","ofType":null},"defaultValue":"DESC"},{"name":"perPage","description":"Defaults to 25 when page is provided.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"skip","description":null,"type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":"0"},{"name":"limit","description":null,"type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"page","description":null,"type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"sort","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"SortArgument","ofType":null}},"defaultValue":null},{"name":"regex","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"filter","description":"Filter for Author nodes.","type":{"kind":"INPUT_OBJECT","name":"AuthorFilters","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"AuthorConnection","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"metaData","description":null,"args":[],"type":{"kind":"OBJECT","name":"MetaData","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"SCALAR","name":"String","description":"The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.","fields":null,"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Page","description":null,"fields":[{"name":"path","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"context","description":null,"args":[],"type":{"kind":"SCALAR","name":"JSON","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"SCALAR","name":"JSON","description":"The `JSON` scalar type represents JSON values as specified by [ECMA-404](http://www.ecma-international.org/publications/files/ECMA-ST/ECMA-404.pdf).","fields":null,"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"SCALAR","name":"Boolean","description":"The `Boolean` scalar type represents `true` or `false`.","fields":null,"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Post","description":null,"fields":[{"name":"path","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"fileInfo","description":null,"args":[],"type":{"kind":"OBJECT","name":"PostFileInfo","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"content","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"excerpt","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"title","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"date","description":null,"args":[{"name":"format","description":"Date format","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"locale","description":"Locale","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"SCALAR","name":"Date","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"author","description":null,"args":[],"type":{"kind":"OBJECT","name":"Author","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"slug","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"tags","description":null,"args":[{"name":"sortBy","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"order","description":null,"type":{"kind":"ENUM","name":"SortOrderEnum","ofType":null},"defaultValue":"DESC"},{"name":"skip","description":null,"type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":"0"},{"name":"sort","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"SortArgument","ofType":null}},"defaultValue":null},{"name":"limit","description":null,"type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"Tag","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"cover","description":null,"args":[{"name":"width","description":"Width","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"height","description":"Height","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"fit","description":"Fit","type":{"kind":"ENUM","name":"ImageFit","ofType":null},"defaultValue":"cover"},{"name":"quality","description":"Quality (default: 75)","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"blur","description":"Blur level for base64 string","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"type":{"kind":"SCALAR","name":"Image","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"headings","description":null,"args":[{"name":"depth","description":null,"type":{"kind":"ENUM","name":"RemarkHeadingLevels","ofType":null},"defaultValue":null},{"name":"stripTags","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":"true"}],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"RemarkHeading","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"timeToRead","description":null,"args":[{"name":"speed","description":"Words per minute","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":"230"}],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"fields","description":null,"args":[],"type":{"kind":"OBJECT","name":"PostFields","ofType":null},"isDeprecated":true,"deprecationReason":"Get field on node instead."},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"belongsTo","description":null,"args":[{"name":"sortBy","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":"\"date\""},{"name":"order","description":null,"type":{"kind":"ENUM","name":"SortOrderEnum","ofType":null},"defaultValue":"DESC"},{"name":"perPage","description":"Defaults to 25 when page is provided.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"skip","description":null,"type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":"0"},{"name":"limit","description":null,"type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"page","description":null,"type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"sort","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"SortArgument","ofType":null}},"defaultValue":null},{"name":"filter","description":"Filter for Post nodes.","type":{"kind":"INPUT_OBJECT","name":"PostBelongsToFilters","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"PostBelongsTo","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"_id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":true,"deprecationReason":"Use id instead."}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"INTERFACE","name":"Node","description":null,"fields":[{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":[{"kind":"OBJECT","name":"Post","ofType":null},{"kind":"OBJECT","name":"Author","ofType":null},{"kind":"OBJECT","name":"Tag","ofType":null}]},{"kind":"SCALAR","name":"ID","description":"The `ID` scalar type represents a unique identifier, often used to refetch an object or as key for a cache. The ID type appears in a JSON response as a String; however, it is not intended to be human-readable. When expected as an input type, any string (such as `\"4\"`) or integer (such as `4`) input value will be accepted as an ID.","fields":null,"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PostFileInfo","description":null,"fields":[{"name":"extension","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"directory","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"path","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"SCALAR","name":"Date","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Author","description":null,"fields":[{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"belongsTo","description":null,"args":[{"name":"sortBy","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":"\"date\""},{"name":"order","description":null,"type":{"kind":"ENUM","name":"SortOrderEnum","ofType":null},"defaultValue":"DESC"},{"name":"perPage","description":"Defaults to 25 when page is provided.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"skip","description":null,"type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":"0"},{"name":"limit","description":null,"type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"page","description":null,"type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"sort","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"SortArgument","ofType":null}},"defaultValue":null},{"name":"filter","description":"Filter for Author nodes.","type":{"kind":"INPUT_OBJECT","name":"AuthorBelongsToFilters","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"AuthorBelongsTo","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"_id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":true,"deprecationReason":"Use id instead."}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"SortOrderEnum","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"ASC","description":"Sort ascending","isDeprecated":false,"deprecationReason":null},{"name":"DESC","description":"Sort descending","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"SCALAR","name":"Int","description":"The `Int` scalar type represents non-fractional signed whole numeric values. Int can represent values between -(2^31) and 2^31 - 1. ","fields":null,"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"SortArgument","description":null,"fields":null,"inputFields":[{"name":"by","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":"\"date\""},{"name":"order","description":null,"type":{"kind":"ENUM","name":"SortOrderEnum","ofType":null},"defaultValue":"DESC"}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"AuthorBelongsToFilters","description":null,"fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"INPUT_OBJECT","name":"AuthorBelongsToFilterIdFilter","ofType":null},"defaultValue":null},{"name":"path","description":null,"type":{"kind":"INPUT_OBJECT","name":"AuthorBelongsToFilterPathFilter","ofType":null},"defaultValue":null},{"name":"typeName","description":null,"type":{"kind":"INPUT_OBJECT","name":"AuthorBelongsToFilterTypeName","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"AuthorBelongsToFilterIdFilter","description":"Filter AuthorBelongsToFilter nodes by id","fields":null,"inputFields":[{"name":"len","description":"Filter nodes which have a string property of specified length.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"eq","description":"Filter nodes by property of (strict) equality.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"ne","description":"Filter nodes by property not equal to provided value.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"regex","description":"Filter nodes by property matching provided regular expression.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"in","description":"Filter nodes by property matching any of the provided values.","type":{"kind":"LIST","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"nin","description":"Filter nodes by property not matching any of the provided values.","type":{"kind":"LIST","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"AuthorBelongsToFilterPathFilter","description":"Filter AuthorBelongsToFilter nodes by path","fields":null,"inputFields":[{"name":"len","description":"Filter nodes which have a string property of specified length.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"eq","description":"Filter nodes by property of (strict) equality.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"ne","description":"Filter nodes by property not equal to provided value.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"regex","description":"Filter nodes by property matching provided regular expression.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"in","description":"Filter nodes by property matching any of the provided values.","type":{"kind":"LIST","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"nin","description":"Filter nodes by property not matching any of the provided values.","type":{"kind":"LIST","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"AuthorBelongsToFilterTypeName","description":"Filter nodes by typeName.","fields":null,"inputFields":[{"name":"eq","description":null,"type":{"kind":"ENUM","name":"AuthorBelongsToTypeNameEnum","ofType":null},"defaultValue":null},{"name":"ne","description":null,"type":{"kind":"ENUM","name":"AuthorBelongsToTypeNameEnum","ofType":null},"defaultValue":null},{"name":"regex","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"in","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"ENUM","name":"AuthorBelongsToTypeNameEnum","ofType":null}},"defaultValue":null},{"name":"nin","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"ENUM","name":"AuthorBelongsToTypeNameEnum","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"AuthorBelongsToTypeNameEnum","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"Post","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"Tag","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"Author","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"AuthorBelongsTo","description":null,"fields":[{"name":"totalCount","description":null,"args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PageInfo","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"edges","description":null,"args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"AuthorBelongsToEdge","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PageInfo","description":null,"fields":[{"name":"perPage","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"currentPage","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalPages","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalItems","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"hasPreviousPage","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"hasNextPage","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"isFirst","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"isLast","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"AuthorBelongsToEdge","description":null,"fields":[{"name":"node","description":null,"args":[],"type":{"kind":"UNION","name":"AuthorBelongsToUnion","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"next","description":null,"args":[],"type":{"kind":"UNION","name":"AuthorBelongsToUnion","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"previous","description":null,"args":[],"type":{"kind":"UNION","name":"AuthorBelongsToUnion","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"UNION","name":"AuthorBelongsToUnion","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":[{"kind":"OBJECT","name":"Post","ofType":null},{"kind":"OBJECT","name":"Tag","ofType":null},{"kind":"OBJECT","name":"Author","ofType":null}]},{"kind":"OBJECT","name":"Tag","description":null,"fields":[{"name":"title","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"path","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"fields","description":null,"args":[],"type":{"kind":"OBJECT","name":"TagFields","ofType":null},"isDeprecated":true,"deprecationReason":"Get field on node instead."},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"belongsTo","description":null,"args":[{"name":"sortBy","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":"\"date\""},{"name":"order","description":null,"type":{"kind":"ENUM","name":"SortOrderEnum","ofType":null},"defaultValue":"DESC"},{"name":"perPage","description":"Defaults to 25 when page is provided.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"skip","description":null,"type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":"0"},{"name":"limit","description":null,"type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"page","description":null,"type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"sort","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"SortArgument","ofType":null}},"defaultValue":null},{"name":"filter","description":"Filter for Tag nodes.","type":{"kind":"INPUT_OBJECT","name":"TagBelongsToFilters","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"TagBelongsTo","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"_id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":true,"deprecationReason":"Use id instead."}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"TagFields","description":null,"fields":[{"name":"title","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"path","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"TagBelongsToFilters","description":null,"fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"INPUT_OBJECT","name":"TagBelongsToFilterIdFilter","ofType":null},"defaultValue":null},{"name":"path","description":null,"type":{"kind":"INPUT_OBJECT","name":"TagBelongsToFilterPathFilter","ofType":null},"defaultValue":null},{"name":"typeName","description":null,"type":{"kind":"INPUT_OBJECT","name":"TagBelongsToFilterTypeName","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"TagBelongsToFilterIdFilter","description":"Filter TagBelongsToFilter nodes by id","fields":null,"inputFields":[{"name":"len","description":"Filter nodes which have a string property of specified length.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"eq","description":"Filter nodes by property of (strict) equality.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"ne","description":"Filter nodes by property not equal to provided value.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"regex","description":"Filter nodes by property matching provided regular expression.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"in","description":"Filter nodes by property matching any of the provided values.","type":{"kind":"LIST","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"nin","description":"Filter nodes by property not matching any of the provided values.","type":{"kind":"LIST","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"TagBelongsToFilterPathFilter","description":"Filter TagBelongsToFilter nodes by path","fields":null,"inputFields":[{"name":"len","description":"Filter nodes which have a string property of specified length.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"eq","description":"Filter nodes by property of (strict) equality.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"ne","description":"Filter nodes by property not equal to provided value.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"regex","description":"Filter nodes by property matching provided regular expression.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"in","description":"Filter nodes by property matching any of the provided values.","type":{"kind":"LIST","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"nin","description":"Filter nodes by property not matching any of the provided values.","type":{"kind":"LIST","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"TagBelongsToFilterTypeName","description":"Filter nodes by typeName.","fields":null,"inputFields":[{"name":"eq","description":null,"type":{"kind":"ENUM","name":"TagBelongsToTypeNameEnum","ofType":null},"defaultValue":null},{"name":"ne","description":null,"type":{"kind":"ENUM","name":"TagBelongsToTypeNameEnum","ofType":null},"defaultValue":null},{"name":"regex","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"in","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"ENUM","name":"TagBelongsToTypeNameEnum","ofType":null}},"defaultValue":null},{"name":"nin","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"ENUM","name":"TagBelongsToTypeNameEnum","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"TagBelongsToTypeNameEnum","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"Post","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"Tag","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"Author","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"TagBelongsTo","description":null,"fields":[{"name":"totalCount","description":null,"args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PageInfo","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"edges","description":null,"args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"TagBelongsToEdge","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"TagBelongsToEdge","description":null,"fields":[{"name":"node","description":null,"args":[],"type":{"kind":"UNION","name":"TagBelongsToUnion","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"next","description":null,"args":[],"type":{"kind":"UNION","name":"TagBelongsToUnion","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"previous","description":null,"args":[],"type":{"kind":"UNION","name":"TagBelongsToUnion","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"UNION","name":"TagBelongsToUnion","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":[{"kind":"OBJECT","name":"Post","ofType":null},{"kind":"OBJECT","name":"Tag","ofType":null},{"kind":"OBJECT","name":"Author","ofType":null}]},{"kind":"ENUM","name":"ImageFit","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"cover","description":"Crop to cover both provided dimensions.","isDeprecated":false,"deprecationReason":null},{"name":"contain","description":"Embed within both provided dimensions.","isDeprecated":false,"deprecationReason":null},{"name":"fill","description":"Ignore the aspect ratio of the input and stretch to both provided dimensions.","isDeprecated":false,"deprecationReason":null},{"name":"inside","description":"Preserving aspect ratio, resize the image to be as large as possible while ensuring its dimensions are less than or equal to both those specified.","isDeprecated":false,"deprecationReason":null},{"name":"outside","description":"Preserving aspect ratio, resize the image to be as small as possible while ensuring its dimensions are greater than or equal to both those specified. Some of these values are based on the object-fit CSS property.","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"SCALAR","name":"Image","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"RemarkHeadingLevels","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"h1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"h2","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"h3","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"h4","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"h5","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"h6","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"RemarkHeading","description":null,"fields":[{"name":"depth","description":null,"args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"value","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"anchor","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PostFields","description":null,"fields":[{"name":"path","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"fileInfo","description":null,"args":[],"type":{"kind":"OBJECT","name":"PostFileInfo","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"content","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"excerpt","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"title","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"date","description":null,"args":[{"name":"format","description":"Date format","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"locale","description":"Locale","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"SCALAR","name":"Date","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"author","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"slug","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"tags","description":null,"args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"cover","description":null,"args":[{"name":"width","description":"Width","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"height","description":"Height","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"fit","description":"Fit","type":{"kind":"ENUM","name":"ImageFit","ofType":null},"defaultValue":"cover"},{"name":"quality","description":"Quality (default: 75)","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"blur","description":"Blur level for base64 string","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"type":{"kind":"SCALAR","name":"Image","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"PostBelongsToFilters","description":null,"fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"INPUT_OBJECT","name":"PostBelongsToFilterIdFilter","ofType":null},"defaultValue":null},{"name":"path","description":null,"type":{"kind":"INPUT_OBJECT","name":"PostBelongsToFilterPathFilter","ofType":null},"defaultValue":null},{"name":"typeName","description":null,"type":{"kind":"INPUT_OBJECT","name":"PostBelongsToFilterTypeName","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"PostBelongsToFilterIdFilter","description":"Filter PostBelongsToFilter nodes by id","fields":null,"inputFields":[{"name":"len","description":"Filter nodes which have a string property of specified length.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"eq","description":"Filter nodes by property of (strict) equality.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"ne","description":"Filter nodes by property not equal to provided value.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"regex","description":"Filter nodes by property matching provided regular expression.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"in","description":"Filter nodes by property matching any of the provided values.","type":{"kind":"LIST","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"nin","description":"Filter nodes by property not matching any of the provided values.","type":{"kind":"LIST","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"PostBelongsToFilterPathFilter","description":"Filter PostBelongsToFilter nodes by path","fields":null,"inputFields":[{"name":"len","description":"Filter nodes which have a string property of specified length.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"eq","description":"Filter nodes by property of (strict) equality.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"ne","description":"Filter nodes by property not equal to provided value.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"regex","description":"Filter nodes by property matching provided regular expression.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"in","description":"Filter nodes by property matching any of the provided values.","type":{"kind":"LIST","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"nin","description":"Filter nodes by property not matching any of the provided values.","type":{"kind":"LIST","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"PostBelongsToFilterTypeName","description":"Filter nodes by typeName.","fields":null,"inputFields":[{"name":"eq","description":null,"type":{"kind":"ENUM","name":"PostBelongsToTypeNameEnum","ofType":null},"defaultValue":null},{"name":"ne","description":null,"type":{"kind":"ENUM","name":"PostBelongsToTypeNameEnum","ofType":null},"defaultValue":null},{"name":"regex","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"in","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"ENUM","name":"PostBelongsToTypeNameEnum","ofType":null}},"defaultValue":null},{"name":"nin","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"ENUM","name":"PostBelongsToTypeNameEnum","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"PostBelongsToTypeNameEnum","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"Post","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"Tag","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"Author","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"PostBelongsTo","description":null,"fields":[{"name":"totalCount","description":null,"args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PageInfo","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"edges","description":null,"args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"PostBelongsToEdge","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PostBelongsToEdge","description":null,"fields":[{"name":"node","description":null,"args":[],"type":{"kind":"UNION","name":"PostBelongsToUnion","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"next","description":null,"args":[],"type":{"kind":"UNION","name":"PostBelongsToUnion","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"previous","description":null,"args":[],"type":{"kind":"UNION","name":"PostBelongsToUnion","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"UNION","name":"PostBelongsToUnion","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":[{"kind":"OBJECT","name":"Post","ofType":null},{"kind":"OBJECT","name":"Tag","ofType":null},{"kind":"OBJECT","name":"Author","ofType":null}]},{"kind":"INPUT_OBJECT","name":"PageFilters","description":null,"fields":null,"inputFields":[{"name":"path","description":null,"type":{"kind":"INPUT_OBJECT","name":"PageFilterPathFilter","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"PageFilterPathFilter","description":"Filter PageFilter nodes by path","fields":null,"inputFields":[{"name":"len","description":"Filter nodes which have a string property of specified length.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"eq","description":"Filter nodes by property of (strict) equality.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"ne","description":"Filter nodes by property not equal to provided value.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"regex","description":"Filter nodes by property matching provided regular expression.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"in","description":"Filter nodes by property matching any of the provided values.","type":{"kind":"LIST","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"nin","description":"Filter nodes by property not matching any of the provided values.","type":{"kind":"LIST","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"PostFilters","description":null,"fields":null,"inputFields":[{"name":"path","description":null,"type":{"kind":"INPUT_OBJECT","name":"PostFilterPathFilter","ofType":null},"defaultValue":null},{"name":"fileInfo","description":null,"type":{"kind":"INPUT_OBJECT","name":"PostFilterFileInfoFilter__Object","ofType":null},"defaultValue":null},{"name":"content","description":null,"type":{"kind":"INPUT_OBJECT","name":"PostFilterContentFilter","ofType":null},"defaultValue":null},{"name":"excerpt","description":null,"type":{"kind":"INPUT_OBJECT","name":"PostFilterExcerptFilter","ofType":null},"defaultValue":null},{"name":"title","description":null,"type":{"kind":"INPUT_OBJECT","name":"PostFilterTitleFilter","ofType":null},"defaultValue":null},{"name":"description","description":null,"type":{"kind":"INPUT_OBJECT","name":"PostFilterDescriptionFilter","ofType":null},"defaultValue":null},{"name":"date","description":null,"type":{"kind":"INPUT_OBJECT","name":"PostFilterDateFilter","ofType":null},"defaultValue":null},{"name":"author","description":null,"type":{"kind":"INPUT_OBJECT","name":"PostFilterAuthorFilter","ofType":null},"defaultValue":null},{"name":"slug","description":null,"type":{"kind":"INPUT_OBJECT","name":"PostFilterSlugFilter","ofType":null},"defaultValue":null},{"name":"tags","description":null,"type":{"kind":"INPUT_OBJECT","name":"PostFilterTagsFilter","ofType":null},"defaultValue":null},{"name":"cover","description":null,"type":{"kind":"INPUT_OBJECT","name":"PostFilterCoverFilter","ofType":null},"defaultValue":null},{"name":"id","description":null,"type":{"kind":"INPUT_OBJECT","name":"PostFilterIdFilter","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"PostFilterPathFilter","description":"Filter PostFilter nodes by path","fields":null,"inputFields":[{"name":"len","description":"Filter nodes which have a string property of specified length.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"eq","description":"Filter nodes by property of (strict) equality.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"ne","description":"Filter nodes by property not equal to provided value.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"regex","description":"Filter nodes by property matching provided regular expression.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"in","description":"Filter nodes by property matching any of the provided values.","type":{"kind":"LIST","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"nin","description":"Filter nodes by property not matching any of the provided values.","type":{"kind":"LIST","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"PostFilterFileInfoFilter__Object","description":null,"fields":null,"inputFields":[{"name":"extension","description":null,"type":{"kind":"INPUT_OBJECT","name":"PostFilterFileInfoExtensionFilter","ofType":null},"defaultValue":null},{"name":"directory","description":null,"type":{"kind":"INPUT_OBJECT","name":"PostFilterFileInfoDirectoryFilter","ofType":null},"defaultValue":null},{"name":"path","description":null,"type":{"kind":"INPUT_OBJECT","name":"PostFilterFileInfoPathFilter","ofType":null},"defaultValue":null},{"name":"name","description":null,"type":{"kind":"INPUT_OBJECT","name":"PostFilterFileInfoNameFilter","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"PostFilterFileInfoExtensionFilter","description":"Filter PostFilter nodes by fileInfo extension","fields":null,"inputFields":[{"name":"len","description":"Filter nodes which have a string property of specified length.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"eq","description":"Filter nodes by property of (strict) equality.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"ne","description":"Filter nodes by property not equal to provided value.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"regex","description":"Filter nodes by property matching provided regular expression.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"in","description":"Filter nodes by property matching any of the provided values.","type":{"kind":"LIST","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"nin","description":"Filter nodes by property not matching any of the provided values.","type":{"kind":"LIST","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"PostFilterFileInfoDirectoryFilter","description":"Filter PostFilter nodes by fileInfo directory","fields":null,"inputFields":[{"name":"len","description":"Filter nodes which have a string property of specified length.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"eq","description":"Filter nodes by property of (strict) equality.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"ne","description":"Filter nodes by property not equal to provided value.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"regex","description":"Filter nodes by property matching provided regular expression.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"in","description":"Filter nodes by property matching any of the provided values.","type":{"kind":"LIST","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"nin","description":"Filter nodes by property not matching any of the provided values.","type":{"kind":"LIST","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"PostFilterFileInfoPathFilter","description":"Filter PostFilter nodes by fileInfo path","fields":null,"inputFields":[{"name":"len","description":"Filter nodes which have a string property of specified length.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"eq","description":"Filter nodes by property of (strict) equality.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"ne","description":"Filter nodes by property not equal to provided value.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"regex","description":"Filter nodes by property matching provided regular expression.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"in","description":"Filter nodes by property matching any of the provided values.","type":{"kind":"LIST","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"nin","description":"Filter nodes by property not matching any of the provided values.","type":{"kind":"LIST","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"PostFilterFileInfoNameFilter","description":"Filter PostFilter nodes by fileInfo name","fields":null,"inputFields":[{"name":"len","description":"Filter nodes which have a string property of specified length.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"eq","description":"Filter nodes by property of (strict) equality.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"ne","description":"Filter nodes by property not equal to provided value.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"regex","description":"Filter nodes by property matching provided regular expression.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"in","description":"Filter nodes by property matching any of the provided values.","type":{"kind":"LIST","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"nin","description":"Filter nodes by property not matching any of the provided values.","type":{"kind":"LIST","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"PostFilterContentFilter","description":"Filter PostFilter nodes by content","fields":null,"inputFields":[{"name":"len","description":"Filter nodes which have a string property of specified length.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"eq","description":"Filter nodes by property of (strict) equality.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"ne","description":"Filter nodes by property not equal to provided value.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"regex","description":"Filter nodes by property matching provided regular expression.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"in","description":"Filter nodes by property matching any of the provided values.","type":{"kind":"LIST","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"nin","description":"Filter nodes by property not matching any of the provided values.","type":{"kind":"LIST","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"PostFilterExcerptFilter","description":"Filter PostFilter nodes by excerpt","fields":null,"inputFields":[{"name":"len","description":"Filter nodes which have a string property of specified length.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"eq","description":"Filter nodes by property of (strict) equality.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"ne","description":"Filter nodes by property not equal to provided value.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"regex","description":"Filter nodes by property matching provided regular expression.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"in","description":"Filter nodes by property matching any of the provided values.","type":{"kind":"LIST","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"nin","description":"Filter nodes by property not matching any of the provided values.","type":{"kind":"LIST","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"PostFilterTitleFilter","description":"Filter PostFilter nodes by title","fields":null,"inputFields":[{"name":"len","description":"Filter nodes which have a string property of specified length.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"eq","description":"Filter nodes by property of (strict) equality.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"ne","description":"Filter nodes by property not equal to provided value.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"regex","description":"Filter nodes by property matching provided regular expression.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"in","description":"Filter nodes by property matching any of the provided values.","type":{"kind":"LIST","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"nin","description":"Filter nodes by property not matching any of the provided values.","type":{"kind":"LIST","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"PostFilterDescriptionFilter","description":"Filter PostFilter nodes by description","fields":null,"inputFields":[{"name":"len","description":"Filter nodes which have a string property of specified length.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"eq","description":"Filter nodes by property of (strict) equality.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"ne","description":"Filter nodes by property not equal to provided value.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"regex","description":"Filter nodes by property matching provided regular expression.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"in","description":"Filter nodes by property matching any of the provided values.","type":{"kind":"LIST","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"nin","description":"Filter nodes by property not matching any of the provided values.","type":{"kind":"LIST","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"PostFilterDateFilter","description":"Filter PostFilter nodes by date","fields":null,"inputFields":[{"name":"dteq","description":"Filter nodes by date property equal to provided date value.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"gt","description":"Filter nodes by property greater than provided value.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"gte","description":"Filter nodes by property greater or equal to provided value.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"lt","description":"Filter nodes by property less than provided value.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"lte","description":"Filter nodes by property less than or equal to provided value.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"between","description":"Filter nodes by property between provided values.","type":{"kind":"LIST","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"PostFilterAuthorFilter","description":"Filter PostFilter nodes by author","fields":null,"inputFields":[{"name":"len","description":"Filter nodes which have a string property of specified length.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"eq","description":"Filter nodes by property of (strict) equality.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"ne","description":"Filter nodes by property not equal to provided value.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"regex","description":"Filter nodes by property matching provided regular expression.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"in","description":"Filter nodes by property matching any of the provided values.","type":{"kind":"LIST","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"nin","description":"Filter nodes by property not matching any of the provided values.","type":{"kind":"LIST","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"PostFilterSlugFilter","description":"Filter PostFilter nodes by slug","fields":null,"inputFields":[{"name":"len","description":"Filter nodes which have a string property of specified length.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"eq","description":"Filter nodes by property of (strict) equality.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"ne","description":"Filter nodes by property not equal to provided value.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"regex","description":"Filter nodes by property matching provided regular expression.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"in","description":"Filter nodes by property matching any of the provided values.","type":{"kind":"LIST","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"nin","description":"Filter nodes by property not matching any of the provided values.","type":{"kind":"LIST","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"PostFilterTagsFilter","description":"Filter PostFilter nodes by tags","fields":null,"inputFields":[{"name":"size","description":"Filter nodes which have an array property of specified size.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"contains","description":"Filter nodes by property containing the provided value.","type":{"kind":"LIST","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"containsAny","description":"Filter nodes by property containing any of the provided values.","type":{"kind":"LIST","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"containsNone","description":"Filter nodes by property containing none of the provided values.","type":{"kind":"LIST","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"PostFilterCoverFilter","description":"Filter PostFilter nodes by cover","fields":null,"inputFields":[{"name":"len","description":"Filter nodes which have a string property of specified length.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"eq","description":"Filter nodes by property of (strict) equality.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"ne","description":"Filter nodes by property not equal to provided value.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"regex","description":"Filter nodes by property matching provided regular expression.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"in","description":"Filter nodes by property matching any of the provided values.","type":{"kind":"LIST","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"nin","description":"Filter nodes by property not matching any of the provided values.","type":{"kind":"LIST","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"PostFilterIdFilter","description":"Filter PostFilter nodes by id","fields":null,"inputFields":[{"name":"len","description":"Filter nodes which have a string property of specified length.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"eq","description":"Filter nodes by property of (strict) equality.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"ne","description":"Filter nodes by property not equal to provided value.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"regex","description":"Filter nodes by property matching provided regular expression.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"in","description":"Filter nodes by property matching any of the provided values.","type":{"kind":"LIST","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"nin","description":"Filter nodes by property not matching any of the provided values.","type":{"kind":"LIST","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PostConnection","description":null,"fields":[{"name":"totalCount","description":null,"args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PageInfo","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"edges","description":null,"args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"PostEdge","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PostEdge","description":null,"fields":[{"name":"node","description":null,"args":[],"type":{"kind":"OBJECT","name":"Post","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"next","description":null,"args":[],"type":{"kind":"OBJECT","name":"Post","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"previous","description":null,"args":[],"type":{"kind":"OBJECT","name":"Post","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"TagFilters","description":null,"fields":null,"inputFields":[{"name":"title","description":null,"type":{"kind":"INPUT_OBJECT","name":"TagFilterTitleFilter","ofType":null},"defaultValue":null},{"name":"path","description":null,"type":{"kind":"INPUT_OBJECT","name":"TagFilterPathFilter","ofType":null},"defaultValue":null},{"name":"id","description":null,"type":{"kind":"INPUT_OBJECT","name":"TagFilterIdFilter","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"TagFilterTitleFilter","description":"Filter TagFilter nodes by title","fields":null,"inputFields":[{"name":"len","description":"Filter nodes which have a string property of specified length.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"eq","description":"Filter nodes by property of (strict) equality.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"ne","description":"Filter nodes by property not equal to provided value.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"regex","description":"Filter nodes by property matching provided regular expression.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"in","description":"Filter nodes by property matching any of the provided values.","type":{"kind":"LIST","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"nin","description":"Filter nodes by property not matching any of the provided values.","type":{"kind":"LIST","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"TagFilterPathFilter","description":"Filter TagFilter nodes by path","fields":null,"inputFields":[{"name":"len","description":"Filter nodes which have a string property of specified length.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"eq","description":"Filter nodes by property of (strict) equality.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"ne","description":"Filter nodes by property not equal to provided value.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"regex","description":"Filter nodes by property matching provided regular expression.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"in","description":"Filter nodes by property matching any of the provided values.","type":{"kind":"LIST","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"nin","description":"Filter nodes by property not matching any of the provided values.","type":{"kind":"LIST","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"TagFilterIdFilter","description":"Filter TagFilter nodes by id","fields":null,"inputFields":[{"name":"len","description":"Filter nodes which have a string property of specified length.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"eq","description":"Filter nodes by property of (strict) equality.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"ne","description":"Filter nodes by property not equal to provided value.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"regex","description":"Filter nodes by property matching provided regular expression.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"in","description":"Filter nodes by property matching any of the provided values.","type":{"kind":"LIST","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"nin","description":"Filter nodes by property not matching any of the provided values.","type":{"kind":"LIST","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"TagConnection","description":null,"fields":[{"name":"totalCount","description":null,"args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PageInfo","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"edges","description":null,"args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"TagEdge","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"TagEdge","description":null,"fields":[{"name":"node","description":null,"args":[],"type":{"kind":"OBJECT","name":"Tag","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"next","description":null,"args":[],"type":{"kind":"OBJECT","name":"Tag","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"previous","description":null,"args":[],"type":{"kind":"OBJECT","name":"Tag","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"AuthorFilters","description":null,"fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"INPUT_OBJECT","name":"AuthorFilterIdFilter","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"AuthorFilterIdFilter","description":"Filter AuthorFilter nodes by id","fields":null,"inputFields":[{"name":"len","description":"Filter nodes which have a string property of specified length.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"eq","description":"Filter nodes by property of (strict) equality.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"ne","description":"Filter nodes by property not equal to provided value.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"regex","description":"Filter nodes by property matching provided regular expression.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"in","description":"Filter nodes by property matching any of the provided values.","type":{"kind":"LIST","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"nin","description":"Filter nodes by property not matching any of the provided values.","type":{"kind":"LIST","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"AuthorConnection","description":null,"fields":[{"name":"totalCount","description":null,"args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PageInfo","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"edges","description":null,"args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"AuthorEdge","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"AuthorEdge","description":null,"fields":[{"name":"node","description":null,"args":[],"type":{"kind":"OBJECT","name":"Author","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"next","description":null,"args":[],"type":{"kind":"OBJECT","name":"Author","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"previous","description":null,"args":[],"type":{"kind":"OBJECT","name":"Author","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"MetaData","description":null,"fields":[{"name":"siteName","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"siteDescription","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"siteUrl","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"pathPrefix","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"__Schema","description":"A GraphQL Schema defines the capabilities of a GraphQL server. It exposes all available types and directives on the server, as well as the entry points for query, mutation, and subscription operations.","fields":[{"name":"types","description":"A list of all types supported by this server.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__Type","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"queryType","description":"The type that query operations will be rooted at.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__Type","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"mutationType","description":"If this server supports mutation, the type that mutation operations will be rooted at.","args":[],"type":{"kind":"OBJECT","name":"__Type","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"subscriptionType","description":"If this server support subscription, the type that subscription operations will be rooted at.","args":[],"type":{"kind":"OBJECT","name":"__Type","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"directives","description":"A list of all directives supported by this server.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__Directive","ofType":null}}}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"__Type","description":"The fundamental unit of any GraphQL Schema is the type. There are many kinds of types in GraphQL as represented by the `__TypeKind` enum.\n\nDepending on the kind of a type, certain fields describe information about that type. Scalar types provide no information beyond a name and description, while Enum types provide their values. Object and Interface types provide the fields they describe. Abstract types, Union and Interface, provide the Object types possible at runtime. List and NonNull types compose other types.","fields":[{"name":"kind","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"__TypeKind","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"fields","description":null,"args":[{"name":"includeDeprecated","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":"false"}],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__Field","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"interfaces","description":null,"args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__Type","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"possibleTypes","description":null,"args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__Type","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"enumValues","description":null,"args":[{"name":"includeDeprecated","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":"false"}],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__EnumValue","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"inputFields","description":null,"args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__InputValue","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"ofType","description":null,"args":[],"type":{"kind":"OBJECT","name":"__Type","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"__TypeKind","description":"An enum describing what kind of type a given `__Type` is.","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"SCALAR","description":"Indicates this type is a scalar.","isDeprecated":false,"deprecationReason":null},{"name":"OBJECT","description":"Indicates this type is an object. `fields` and `interfaces` are valid fields.","isDeprecated":false,"deprecationReason":null},{"name":"INTERFACE","description":"Indicates this type is an interface. `fields` and `possibleTypes` are valid fields.","isDeprecated":false,"deprecationReason":null},{"name":"UNION","description":"Indicates this type is a union. `possibleTypes` is a valid field.","isDeprecated":false,"deprecationReason":null},{"name":"ENUM","description":"Indicates this type is an enum. `enumValues` is a valid field.","isDeprecated":false,"deprecationReason":null},{"name":"INPUT_OBJECT","description":"Indicates this type is an input object. `inputFields` is a valid field.","isDeprecated":false,"deprecationReason":null},{"name":"LIST","description":"Indicates this type is a list. `ofType` is a valid field.","isDeprecated":false,"deprecationReason":null},{"name":"NON_NULL","description":"Indicates this type is a non-null. `ofType` is a valid field.","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"__Field","description":"Object and Interface types are described by a list of Fields, each of which has a name, potentially a list of arguments, and a return type.","fields":[{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"args","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__InputValue","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"type","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__Type","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"isDeprecated","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deprecationReason","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"__InputValue","description":"Arguments provided to Fields or Directives and the input fields of an InputObject are represented as Input Values which describe their type and optionally a default value.","fields":[{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"type","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__Type","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"defaultValue","description":"A GraphQL-formatted string representing the default value for this input value.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"__EnumValue","description":"One possible value for a given Enum. Enum values are unique values, not a placeholder for a string or numeric value. However an Enum value is returned in a JSON response as a string.","fields":[{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"isDeprecated","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deprecationReason","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"__Directive","description":"A Directive provides a way to describe alternate runtime execution and type validation behavior in a GraphQL document.\n\nIn some cases, you need to provide options to alter GraphQL's execution behavior in ways field arguments will not suffice, such as conditionally including or skipping a field. Directives provide this by describing additional information to the executor.","fields":[{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"locations","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"__DirectiveLocation","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"args","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__InputValue","ofType":null}}}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"__DirectiveLocation","description":"A Directive can be adjacent to many parts of the GraphQL language, a __DirectiveLocation describes one such possible adjacencies.","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"QUERY","description":"Location adjacent to a query operation.","isDeprecated":false,"deprecationReason":null},{"name":"MUTATION","description":"Location adjacent to a mutation operation.","isDeprecated":false,"deprecationReason":null},{"name":"SUBSCRIPTION","description":"Location adjacent to a subscription operation.","isDeprecated":false,"deprecationReason":null},{"name":"FIELD","description":"Location adjacent to a field.","isDeprecated":false,"deprecationReason":null},{"name":"FRAGMENT_DEFINITION","description":"Location adjacent to a fragment definition.","isDeprecated":false,"deprecationReason":null},{"name":"FRAGMENT_SPREAD","description":"Location adjacent to a fragment spread.","isDeprecated":false,"deprecationReason":null},{"name":"INLINE_FRAGMENT","description":"Location adjacent to an inline fragment.","isDeprecated":false,"deprecationReason":null},{"name":"VARIABLE_DEFINITION","description":"Location adjacent to a variable definition.","isDeprecated":false,"deprecationReason":null},{"name":"SCHEMA","description":"Location adjacent to a schema definition.","isDeprecated":false,"deprecationReason":null},{"name":"SCALAR","description":"Location adjacent to a scalar definition.","isDeprecated":false,"deprecationReason":null},{"name":"OBJECT","description":"Location adjacent to an object type definition.","isDeprecated":false,"deprecationReason":null},{"name":"FIELD_DEFINITION","description":"Location adjacent to a field definition.","isDeprecated":false,"deprecationReason":null},{"name":"ARGUMENT_DEFINITION","description":"Location adjacent to an argument definition.","isDeprecated":false,"deprecationReason":null},{"name":"INTERFACE","description":"Location adjacent to an interface definition.","isDeprecated":false,"deprecationReason":null},{"name":"UNION","description":"Location adjacent to a union definition.","isDeprecated":false,"deprecationReason":null},{"name":"ENUM","description":"Location adjacent to an enum definition.","isDeprecated":false,"deprecationReason":null},{"name":"ENUM_VALUE","description":"Location adjacent to an enum value definition.","isDeprecated":false,"deprecationReason":null},{"name":"INPUT_OBJECT","description":"Location adjacent to an input object type definition.","isDeprecated":false,"deprecationReason":null},{"name":"INPUT_FIELD_DEFINITION","description":"Location adjacent to an input object field definition.","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null}],"directives":[{"name":"include","description":"Directs the executor to include this field or fragment only when the `if` argument is true.","locations":["FIELD","FRAGMENT_SPREAD","INLINE_FRAGMENT"],"args":[{"name":"if","description":"Included when true.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"defaultValue":null}]},{"name":"skip","description":"Directs the executor to skip this field or fragment when the `if` argument is true.","locations":["FIELD","FRAGMENT_SPREAD","INLINE_FRAGMENT"],"args":[{"name":"if","description":"Skipped when true.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"defaultValue":null}]},{"name":"deprecated","description":"Marks an element of a GraphQL schema as no longer supported.","locations":["FIELD_DEFINITION","ENUM_VALUE"],"args":[{"name":"reason","description":"Explains why this element was deprecated, usually also including a suggestion for how to access supported similar data. Formatted using the Markdown syntax (as specified by [CommonMark](https://commonmark.org/).","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":"\"No longer supported\""}]}]}}}

Any tips on what I could do or try? I'm not sure where to start debugging.

jimkyndemeyer commented 5 years ago

Here's the request as it appears in an Apollo GraphQL server that processes the plugin query without issue:

image

Given that the query seems to work for you it would make sense to try and curl using the same http method and headers to see whether that reproduces the issue.

steebchen commented 5 years ago

I have tried removing all headers and used all headers above but I can't reproduce the error with curl, it works fine all the time.

steebchen commented 5 years ago

@jimkyndemeyer Any other hints on what I could try would be highly appreciated. I really don't know what to do here.

jimkyndemeyer commented 5 years ago

Hi Luca.

You should be able to run the GraphQL endpoint with a debugger attached and have it break on errors as you invoke the introspection from the plugin.

That could indicate why it encounters an error.