diff --git a/.gitattributes b/.gitattributes index b200139..50171b5 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1,12 +1,6 @@ -/.yarn/releases/** linguist-vendored -/.yarn/plugins/** linguist-vendored -/.yarn/cache/** linguist-vendored -/.yarn/sdks/** linguist-vendored -/.yarn/pnpify/** linguist-vendored - -/.pnp.js binary linguist-generated -/.pnp.cjs binary linguist-generated +/.yarn/** linguist-vendored +/.pnp.* binary linguist-generated /.vscode/*.json linguist-language=JSON5 -__generated__ linguist-generated +**/__generated__/** linguist-generated diff --git a/examples/mdx/.gitignore b/examples/mdx/.gitignore new file mode 100644 index 0000000..f8ee944 --- /dev/null +++ b/examples/mdx/.gitignore @@ -0,0 +1,2 @@ +public/ +.cache/ diff --git a/examples/mdx/gatsby-config.ts b/examples/mdx/gatsby-config.ts new file mode 100644 index 0000000..6f8078e --- /dev/null +++ b/examples/mdx/gatsby-config.ts @@ -0,0 +1,37 @@ +import type { GatsbyConfig } from 'gatsby'; + +const config: GatsbyConfig = { + siteMetadata: { + title: 'gatsby-plugin-typegen example', + description: 'gatsby-plugin-typegen example with TypeScript', + }, + plugins: [ + 'gatsby-plugin-react-helmet-async', + 'gatsby-plugin-image', + { + resolve: 'gatsby-source-filesystem', + options: { + name: 'images', + path: 'src/images', + }, + }, + 'gatsby-transformer-sharp', + 'gatsby-plugin-sharp', + 'gatsby-plugin-mdx', + { + resolve: 'gatsby-plugin-typegen', + options: { + outputPath: 'src/__generated__/gatsby-types.d.ts', + emitSchema: { + 'src/__generated__/gatsby-introspection.json': true, + 'src/__generated__/gatsby-schema.graphql': true, + }, + emitPluginDocument: { + 'src/__generated__/gatsby-plugin-documents.graphql': true, + }, + }, + }, + ], +}; + +export default config; diff --git a/examples/mdx/gatsby-node.js b/examples/mdx/gatsby-node.js new file mode 100644 index 0000000..e69de29 diff --git a/examples/mdx/package.json b/examples/mdx/package.json new file mode 100644 index 0000000..15c07c7 --- /dev/null +++ b/examples/mdx/package.json @@ -0,0 +1,36 @@ +{ + "name": "example-mdx", + "private": true, + "description": "gatsby-plugin-typegen example with MDX", + "version": "0.1.0", + "author": { + "name": "Hyeseong Kim", + "email": "hey@hyeseong.kim" + }, + "scripts": { + "build": "gatsby build", + "develop": "gatsby develop", + "serve": "gatsby serve", + "clean": "gatsby clean" + }, + "dependencies": { + "@mdx-js/mdx": "v1", + "@mdx-js/react": "v1", + "gatsby": "^4.9.3", + "gatsby-plugin-image": "^2.9.1", + "gatsby-plugin-mdx": "^3.16.1", + "gatsby-plugin-react-helmet": "^5.9.0", + "gatsby-plugin-react-helmet-async": "^1.2.1", + "gatsby-plugin-sharp": "^4.9.1", + "gatsby-plugin-typegen": "portal:../../plugin", + "gatsby-source-filesystem": "^4.9.1", + "gatsby-transformer-sharp": "^4.9.0", + "react": "^17.0.1", + "react-dom": "^17.0.1", + "react-helmet-async": "^1.2.3" + }, + "devDependencies": { + "@types/react": "^17.0.40", + "typescript": "^4.6.2" + } +} diff --git a/examples/mdx/src/__generated__/gatsby-introspection.json b/examples/mdx/src/__generated__/gatsby-introspection.json new file mode 100644 index 0000000..ecfbd83 --- /dev/null +++ b/examples/mdx/src/__generated__/gatsby-introspection.json @@ -0,0 +1,24100 @@ +{ + "__schema": { + "description": null, + "queryType": { + "name": "Query" + }, + "mutationType": null, + "subscriptionType": null, + "types": [ + { + "kind": "INPUT_OBJECT", + "name": "AVIFOptions", + "description": null, + "specifiedByUrl": null, + "fields": null, + "inputFields": [ + { + "name": "lossless", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "quality", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "speed", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "BlurredOptions", + "description": null, + "specifiedByUrl": null, + "fields": null, + "inputFields": [ + { + "name": "toFormat", + "description": "Force the output format for the low-res preview. Default is to use the same format as the input. You should rarely need to change this", + "type": { + "kind": "ENUM", + "name": "ImageFormat", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "width", + "description": "Width of the generated low-res preview. Default is 20px", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "SCALAR", + "name": "Boolean", + "description": "The `Boolean` scalar type represents `true` or `false`.", + "specifiedByUrl": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "BooleanQueryOperatorInput", + "description": null, + "specifiedByUrl": null, + "fields": null, + "inputFields": [ + { + "name": "eq", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ne", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nin", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "SCALAR", + "name": "Date", + "description": "A date string, such as 2007-12-03, compliant with the ISO 8601 standard for representation of dates and times using the Gregorian calendar.", + "specifiedByUrl": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "DateQueryOperatorInput", + "description": null, + "specifiedByUrl": null, + "fields": null, + "inputFields": [ + { + "name": "eq", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ne", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nin", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "Directory", + "description": null, + "specifiedByUrl": null, + "fields": [ + { + "name": "absolutePath", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "accessTime", + "description": null, + "args": [ + { + "name": "difference", + "description": "Returns the difference between this date and the current time. Defaults to \"milliseconds\" but you can also pass in as the measurement \"years\", \"months\", \"weeks\", \"days\", \"hours\", \"minutes\", and \"seconds\".", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "formatString", + "description": "Format the date using Moment.js' date tokens, e.g. `date(formatString: \"YYYY MMMM DD\")`. See https://momentjs.com/docs/#/displaying/format/ for documentation for different tokens.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "fromNow", + "description": "Returns a string generated with Moment.js' `fromNow` function", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "locale", + "description": "Configures the locale Moment.js will use to format the date.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "atime", + "description": null, + "args": [ + { + "name": "difference", + "description": "Returns the difference between this date and the current time. Defaults to \"milliseconds\" but you can also pass in as the measurement \"years\", \"months\", \"weeks\", \"days\", \"hours\", \"minutes\", and \"seconds\".", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "formatString", + "description": "Format the date using Moment.js' date tokens, e.g. `date(formatString: \"YYYY MMMM DD\")`. See https://momentjs.com/docs/#/displaying/format/ for documentation for different tokens.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "fromNow", + "description": "Returns a string generated with Moment.js' `fromNow` function", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "locale", + "description": "Configures the locale Moment.js will use to format the date.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "atimeMs", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "base", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "birthTime", + "description": null, + "args": [ + { + "name": "difference", + "description": "Returns the difference between this date and the current time. Defaults to \"milliseconds\" but you can also pass in as the measurement \"years\", \"months\", \"weeks\", \"days\", \"hours\", \"minutes\", and \"seconds\".", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "formatString", + "description": "Format the date using Moment.js' date tokens, e.g. `date(formatString: \"YYYY MMMM DD\")`. See https://momentjs.com/docs/#/displaying/format/ for documentation for different tokens.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "fromNow", + "description": "Returns a string generated with Moment.js' `fromNow` function", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "locale", + "description": "Configures the locale Moment.js will use to format the date.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "birthtime", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + }, + "isDeprecated": true, + "deprecationReason": "Use `birthTime` instead" + }, + { + "name": "birthtimeMs", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "isDeprecated": true, + "deprecationReason": "Use `birthTime` instead" + }, + { + "name": "changeTime", + "description": null, + "args": [ + { + "name": "difference", + "description": "Returns the difference between this date and the current time. Defaults to \"milliseconds\" but you can also pass in as the measurement \"years\", \"months\", \"weeks\", \"days\", \"hours\", \"minutes\", and \"seconds\".", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "formatString", + "description": "Format the date using Moment.js' date tokens, e.g. `date(formatString: \"YYYY MMMM DD\")`. See https://momentjs.com/docs/#/displaying/format/ for documentation for different tokens.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "fromNow", + "description": "Returns a string generated with Moment.js' `fromNow` function", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "locale", + "description": "Configures the locale Moment.js will use to format the date.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ctime", + "description": null, + "args": [ + { + "name": "difference", + "description": "Returns the difference between this date and the current time. Defaults to \"milliseconds\" but you can also pass in as the measurement \"years\", \"months\", \"weeks\", \"days\", \"hours\", \"minutes\", and \"seconds\".", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "formatString", + "description": "Format the date using Moment.js' date tokens, e.g. `date(formatString: \"YYYY MMMM DD\")`. See https://momentjs.com/docs/#/displaying/format/ for documentation for different tokens.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "fromNow", + "description": "Returns a string generated with Moment.js' `fromNow` function", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "locale", + "description": "Configures the locale Moment.js will use to format the date.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ctimeMs", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "dev", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "dir", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ext", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "extension", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "gid", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "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": false, + "deprecationReason": null + }, + { + "name": "ino", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "internal", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Internal", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "mode", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "modifiedTime", + "description": null, + "args": [ + { + "name": "difference", + "description": "Returns the difference between this date and the current time. Defaults to \"milliseconds\" but you can also pass in as the measurement \"years\", \"months\", \"weeks\", \"days\", \"hours\", \"minutes\", and \"seconds\".", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "formatString", + "description": "Format the date using Moment.js' date tokens, e.g. `date(formatString: \"YYYY MMMM DD\")`. See https://momentjs.com/docs/#/displaying/format/ for documentation for different tokens.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "fromNow", + "description": "Returns a string generated with Moment.js' `fromNow` function", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "locale", + "description": "Configures the locale Moment.js will use to format the date.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "mtime", + "description": null, + "args": [ + { + "name": "difference", + "description": "Returns the difference between this date and the current time. Defaults to \"milliseconds\" but you can also pass in as the measurement \"years\", \"months\", \"weeks\", \"days\", \"hours\", \"minutes\", and \"seconds\".", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "formatString", + "description": "Format the date using Moment.js' date tokens, e.g. `date(formatString: \"YYYY MMMM DD\")`. See https://momentjs.com/docs/#/displaying/format/ for documentation for different tokens.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "fromNow", + "description": "Returns a string generated with Moment.js' `fromNow` function", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "locale", + "description": "Configures the locale Moment.js will use to format the date.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "mtimeMs", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nlink", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent", + "description": null, + "args": [], + "type": { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "prettySize", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "rdev", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "relativeDirectory", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "relativePath", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "root", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "size", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sourceInstanceName", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "uid", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "DirectoryConnection", + "description": null, + "specifiedByUrl": null, + "fields": [ + { + "name": "distinct", + "description": null, + "args": [ + { + "name": "field", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "DirectoryFieldsEnum", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "edges", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "DirectoryEdge", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "group", + "description": null, + "args": [ + { + "name": "field", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "DirectoryFieldsEnum", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "limit", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "DirectoryGroupConnection", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "max", + "description": null, + "args": [ + { + "name": "field", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "DirectoryFieldsEnum", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "min", + "description": null, + "args": [ + { + "name": "field", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "DirectoryFieldsEnum", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nodes", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Directory", + "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": "sum", + "description": null, + "args": [ + { + "name": "field", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "DirectoryFieldsEnum", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "totalCount", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "DirectoryEdge", + "description": null, + "specifiedByUrl": null, + "fields": [ + { + "name": "next", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Directory", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "node", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Directory", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "previous", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Directory", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "DirectoryFieldsEnum", + "description": null, + "specifiedByUrl": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "absolutePath", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "accessTime", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "atime", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "atimeMs", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "base", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "birthTime", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "birthtime", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "birthtimeMs", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "changeTime", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___children", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___children___children", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___children___children___children", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___children___children___id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___children___id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___children___internal___content", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___children___internal___contentDigest", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___children___internal___description", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___children___internal___fieldOwners", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___children___internal___ignoreType", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___children___internal___mediaType", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___children___internal___owner", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___children___internal___type", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___children___parent___children", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___children___parent___id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___internal___content", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___internal___contentDigest", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___internal___description", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___internal___fieldOwners", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___internal___ignoreType", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___internal___mediaType", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___internal___owner", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___internal___type", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___parent___children", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___parent___children___children", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___parent___children___id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___parent___id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___parent___internal___content", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___parent___internal___contentDigest", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___parent___internal___description", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___parent___internal___fieldOwners", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___parent___internal___ignoreType", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___parent___internal___mediaType", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___parent___internal___owner", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___parent___internal___type", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___parent___parent___children", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___parent___parent___id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ctime", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ctimeMs", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "dev", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "dir", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ext", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "extension", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "gid", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ino", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "internal___content", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "internal___contentDigest", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "internal___description", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "internal___fieldOwners", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "internal___ignoreType", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "internal___mediaType", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "internal___owner", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "internal___type", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "mode", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "modifiedTime", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "mtime", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "mtimeMs", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nlink", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___children", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___children___children", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___children___children___children", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___children___children___id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___children___id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___children___internal___content", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___children___internal___contentDigest", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___children___internal___description", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___children___internal___fieldOwners", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___children___internal___ignoreType", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___children___internal___mediaType", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___children___internal___owner", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___children___internal___type", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___children___parent___children", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___children___parent___id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___internal___content", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___internal___contentDigest", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___internal___description", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___internal___fieldOwners", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___internal___ignoreType", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___internal___mediaType", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___internal___owner", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___internal___type", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___parent___children", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___parent___children___children", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___parent___children___id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___parent___id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___parent___internal___content", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___parent___internal___contentDigest", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___parent___internal___description", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___parent___internal___fieldOwners", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___parent___internal___ignoreType", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___parent___internal___mediaType", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___parent___internal___owner", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___parent___internal___type", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___parent___parent___children", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___parent___parent___id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "prettySize", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "rdev", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "relativeDirectory", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "relativePath", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "root", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "size", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sourceInstanceName", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "uid", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "DirectoryFilterInput", + "description": null, + "specifiedByUrl": null, + "fields": null, + "inputFields": [ + { + "name": "absolutePath", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "StringQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "accessTime", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "DateQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "atime", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "DateQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "atimeMs", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "FloatQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "base", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "StringQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "birthTime", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "DateQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "birthtime", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "DateQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "birthtimeMs", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "FloatQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "changeTime", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "DateQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "NodeFilterListInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ctime", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "DateQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ctimeMs", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "FloatQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "dev", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "IntQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "dir", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "StringQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ext", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "StringQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "extension", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "StringQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "gid", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "IntQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "StringQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ino", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "FloatQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "internal", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "InternalFilterInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "mode", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "IntQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "modifiedTime", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "DateQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "mtime", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "DateQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "mtimeMs", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "FloatQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "StringQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nlink", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "IntQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "NodeFilterInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "prettySize", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "StringQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "rdev", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "IntQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "relativeDirectory", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "StringQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "relativePath", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "StringQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "root", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "StringQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "size", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "IntQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sourceInstanceName", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "StringQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "uid", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "IntQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "DirectoryGroupConnection", + "description": null, + "specifiedByUrl": null, + "fields": [ + { + "name": "distinct", + "description": null, + "args": [ + { + "name": "field", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "DirectoryFieldsEnum", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "edges", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "DirectoryEdge", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "field", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "fieldValue", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "group", + "description": null, + "args": [ + { + "name": "field", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "DirectoryFieldsEnum", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "limit", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "DirectoryGroupConnection", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "max", + "description": null, + "args": [ + { + "name": "field", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "DirectoryFieldsEnum", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "min", + "description": null, + "args": [ + { + "name": "field", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "DirectoryFieldsEnum", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nodes", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Directory", + "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": "sum", + "description": null, + "args": [ + { + "name": "field", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "DirectoryFieldsEnum", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "totalCount", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "DirectorySortInput", + "description": null, + "specifiedByUrl": null, + "fields": null, + "inputFields": [ + { + "name": "fields", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "DirectoryFieldsEnum", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "order", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "SortOrderEnum", + "ofType": null + } + }, + "defaultValue": "[ASC]", + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "DuotoneGradient", + "description": null, + "specifiedByUrl": null, + "fields": null, + "inputFields": [ + { + "name": "highlight", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "opacity", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "shadow", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "File", + "description": null, + "specifiedByUrl": null, + "fields": [ + { + "name": "absolutePath", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "accessTime", + "description": null, + "args": [ + { + "name": "difference", + "description": "Returns the difference between this date and the current time. Defaults to \"milliseconds\" but you can also pass in as the measurement \"years\", \"months\", \"weeks\", \"days\", \"hours\", \"minutes\", and \"seconds\".", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "formatString", + "description": "Format the date using Moment.js' date tokens, e.g. `date(formatString: \"YYYY MMMM DD\")`. See https://momentjs.com/docs/#/displaying/format/ for documentation for different tokens.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "fromNow", + "description": "Returns a string generated with Moment.js' `fromNow` function", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "locale", + "description": "Configures the locale Moment.js will use to format the date.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "atime", + "description": null, + "args": [ + { + "name": "difference", + "description": "Returns the difference between this date and the current time. Defaults to \"milliseconds\" but you can also pass in as the measurement \"years\", \"months\", \"weeks\", \"days\", \"hours\", \"minutes\", and \"seconds\".", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "formatString", + "description": "Format the date using Moment.js' date tokens, e.g. `date(formatString: \"YYYY MMMM DD\")`. See https://momentjs.com/docs/#/displaying/format/ for documentation for different tokens.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "fromNow", + "description": "Returns a string generated with Moment.js' `fromNow` function", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "locale", + "description": "Configures the locale Moment.js will use to format the date.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "atimeMs", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "base", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "birthTime", + "description": null, + "args": [ + { + "name": "difference", + "description": "Returns the difference between this date and the current time. Defaults to \"milliseconds\" but you can also pass in as the measurement \"years\", \"months\", \"weeks\", \"days\", \"hours\", \"minutes\", and \"seconds\".", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "formatString", + "description": "Format the date using Moment.js' date tokens, e.g. `date(formatString: \"YYYY MMMM DD\")`. See https://momentjs.com/docs/#/displaying/format/ for documentation for different tokens.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "fromNow", + "description": "Returns a string generated with Moment.js' `fromNow` function", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "locale", + "description": "Configures the locale Moment.js will use to format the date.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "birthtime", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + }, + "isDeprecated": true, + "deprecationReason": "Use `birthTime` instead" + }, + { + "name": "birthtimeMs", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "isDeprecated": true, + "deprecationReason": "Use `birthTime` instead" + }, + { + "name": "blksize", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "blocks", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "changeTime", + "description": null, + "args": [ + { + "name": "difference", + "description": "Returns the difference between this date and the current time. Defaults to \"milliseconds\" but you can also pass in as the measurement \"years\", \"months\", \"weeks\", \"days\", \"hours\", \"minutes\", and \"seconds\".", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "formatString", + "description": "Format the date using Moment.js' date tokens, e.g. `date(formatString: \"YYYY MMMM DD\")`. See https://momentjs.com/docs/#/displaying/format/ for documentation for different tokens.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "fromNow", + "description": "Returns a string generated with Moment.js' `fromNow` function", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "locale", + "description": "Configures the locale Moment.js will use to format the date.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "childImageSharp", + "description": "Returns the first child node of type ImageSharp or null if there are no children of given type on this node", + "args": [], + "type": { + "kind": "OBJECT", + "name": "ImageSharp", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "childrenImageSharp", + "description": "Returns all children nodes filtered by type ImageSharp", + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ImageSharp", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ctime", + "description": null, + "args": [ + { + "name": "difference", + "description": "Returns the difference between this date and the current time. Defaults to \"milliseconds\" but you can also pass in as the measurement \"years\", \"months\", \"weeks\", \"days\", \"hours\", \"minutes\", and \"seconds\".", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "formatString", + "description": "Format the date using Moment.js' date tokens, e.g. `date(formatString: \"YYYY MMMM DD\")`. See https://momentjs.com/docs/#/displaying/format/ for documentation for different tokens.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "fromNow", + "description": "Returns a string generated with Moment.js' `fromNow` function", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "locale", + "description": "Configures the locale Moment.js will use to format the date.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ctimeMs", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "dev", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "dir", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ext", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "extension", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "gid", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "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": false, + "deprecationReason": null + }, + { + "name": "ino", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "internal", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Internal", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "mode", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "modifiedTime", + "description": null, + "args": [ + { + "name": "difference", + "description": "Returns the difference between this date and the current time. Defaults to \"milliseconds\" but you can also pass in as the measurement \"years\", \"months\", \"weeks\", \"days\", \"hours\", \"minutes\", and \"seconds\".", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "formatString", + "description": "Format the date using Moment.js' date tokens, e.g. `date(formatString: \"YYYY MMMM DD\")`. See https://momentjs.com/docs/#/displaying/format/ for documentation for different tokens.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "fromNow", + "description": "Returns a string generated with Moment.js' `fromNow` function", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "locale", + "description": "Configures the locale Moment.js will use to format the date.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "mtime", + "description": null, + "args": [ + { + "name": "difference", + "description": "Returns the difference between this date and the current time. Defaults to \"milliseconds\" but you can also pass in as the measurement \"years\", \"months\", \"weeks\", \"days\", \"hours\", \"minutes\", and \"seconds\".", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "formatString", + "description": "Format the date using Moment.js' date tokens, e.g. `date(formatString: \"YYYY MMMM DD\")`. See https://momentjs.com/docs/#/displaying/format/ for documentation for different tokens.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "fromNow", + "description": "Returns a string generated with Moment.js' `fromNow` function", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "locale", + "description": "Configures the locale Moment.js will use to format the date.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "mtimeMs", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nlink", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent", + "description": null, + "args": [], + "type": { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "prettySize", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "publicURL", + "description": "Copy file to static directory and return public url to it", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "rdev", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "relativeDirectory", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "relativePath", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "root", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "size", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sourceInstanceName", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "uid", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "FileConnection", + "description": null, + "specifiedByUrl": null, + "fields": [ + { + "name": "distinct", + "description": null, + "args": [ + { + "name": "field", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "FileFieldsEnum", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "edges", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "FileEdge", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "group", + "description": null, + "args": [ + { + "name": "field", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "FileFieldsEnum", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "limit", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "FileGroupConnection", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "max", + "description": null, + "args": [ + { + "name": "field", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "FileFieldsEnum", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "min", + "description": null, + "args": [ + { + "name": "field", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "FileFieldsEnum", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nodes", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "File", + "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": "sum", + "description": null, + "args": [ + { + "name": "field", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "FileFieldsEnum", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "totalCount", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "FileEdge", + "description": null, + "specifiedByUrl": null, + "fields": [ + { + "name": "next", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "File", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "node", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "File", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "previous", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "File", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "FileFieldsEnum", + "description": null, + "specifiedByUrl": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "absolutePath", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "accessTime", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "atime", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "atimeMs", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "base", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "birthTime", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "birthtime", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "birthtimeMs", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "blksize", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "blocks", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "changeTime", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "childImageSharp___children", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "childImageSharp___children___children", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "childImageSharp___children___children___children", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "childImageSharp___children___children___id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "childImageSharp___children___id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "childImageSharp___children___internal___content", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "childImageSharp___children___internal___contentDigest", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "childImageSharp___children___internal___description", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "childImageSharp___children___internal___fieldOwners", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "childImageSharp___children___internal___ignoreType", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "childImageSharp___children___internal___mediaType", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "childImageSharp___children___internal___owner", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "childImageSharp___children___internal___type", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "childImageSharp___children___parent___children", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "childImageSharp___children___parent___id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "childImageSharp___fixed___aspectRatio", + "description": null, + "isDeprecated": true, + "deprecationReason": "Sorting on fields that need arguments to resolve is deprecated." + }, + { + "name": "childImageSharp___fixed___base64", + "description": null, + "isDeprecated": true, + "deprecationReason": "Sorting on fields that need arguments to resolve is deprecated." + }, + { + "name": "childImageSharp___fixed___height", + "description": null, + "isDeprecated": true, + "deprecationReason": "Sorting on fields that need arguments to resolve is deprecated." + }, + { + "name": "childImageSharp___fixed___originalName", + "description": null, + "isDeprecated": true, + "deprecationReason": "Sorting on fields that need arguments to resolve is deprecated." + }, + { + "name": "childImageSharp___fixed___src", + "description": null, + "isDeprecated": true, + "deprecationReason": "Sorting on fields that need arguments to resolve is deprecated." + }, + { + "name": "childImageSharp___fixed___srcSet", + "description": null, + "isDeprecated": true, + "deprecationReason": "Sorting on fields that need arguments to resolve is deprecated." + }, + { + "name": "childImageSharp___fixed___srcSetWebp", + "description": null, + "isDeprecated": true, + "deprecationReason": "Sorting on fields that need arguments to resolve is deprecated." + }, + { + "name": "childImageSharp___fixed___srcWebp", + "description": null, + "isDeprecated": true, + "deprecationReason": "Sorting on fields that need arguments to resolve is deprecated." + }, + { + "name": "childImageSharp___fixed___tracedSVG", + "description": null, + "isDeprecated": true, + "deprecationReason": "Sorting on fields that need arguments to resolve is deprecated." + }, + { + "name": "childImageSharp___fixed___width", + "description": null, + "isDeprecated": true, + "deprecationReason": "Sorting on fields that need arguments to resolve is deprecated." + }, + { + "name": "childImageSharp___fluid___aspectRatio", + "description": null, + "isDeprecated": true, + "deprecationReason": "Sorting on fields that need arguments to resolve is deprecated." + }, + { + "name": "childImageSharp___fluid___base64", + "description": null, + "isDeprecated": true, + "deprecationReason": "Sorting on fields that need arguments to resolve is deprecated." + }, + { + "name": "childImageSharp___fluid___originalImg", + "description": null, + "isDeprecated": true, + "deprecationReason": "Sorting on fields that need arguments to resolve is deprecated." + }, + { + "name": "childImageSharp___fluid___originalName", + "description": null, + "isDeprecated": true, + "deprecationReason": "Sorting on fields that need arguments to resolve is deprecated." + }, + { + "name": "childImageSharp___fluid___presentationHeight", + "description": null, + "isDeprecated": true, + "deprecationReason": "Sorting on fields that need arguments to resolve is deprecated." + }, + { + "name": "childImageSharp___fluid___presentationWidth", + "description": null, + "isDeprecated": true, + "deprecationReason": "Sorting on fields that need arguments to resolve is deprecated." + }, + { + "name": "childImageSharp___fluid___sizes", + "description": null, + "isDeprecated": true, + "deprecationReason": "Sorting on fields that need arguments to resolve is deprecated." + }, + { + "name": "childImageSharp___fluid___src", + "description": null, + "isDeprecated": true, + "deprecationReason": "Sorting on fields that need arguments to resolve is deprecated." + }, + { + "name": "childImageSharp___fluid___srcSet", + "description": null, + "isDeprecated": true, + "deprecationReason": "Sorting on fields that need arguments to resolve is deprecated." + }, + { + "name": "childImageSharp___fluid___srcSetWebp", + "description": null, + "isDeprecated": true, + "deprecationReason": "Sorting on fields that need arguments to resolve is deprecated." + }, + { + "name": "childImageSharp___fluid___srcWebp", + "description": null, + "isDeprecated": true, + "deprecationReason": "Sorting on fields that need arguments to resolve is deprecated." + }, + { + "name": "childImageSharp___fluid___tracedSVG", + "description": null, + "isDeprecated": true, + "deprecationReason": "Sorting on fields that need arguments to resolve is deprecated." + }, + { + "name": "childImageSharp___gatsbyImageData", + "description": null, + "isDeprecated": true, + "deprecationReason": "Sorting on fields that need arguments to resolve is deprecated." + }, + { + "name": "childImageSharp___id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "childImageSharp___internal___content", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "childImageSharp___internal___contentDigest", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "childImageSharp___internal___description", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "childImageSharp___internal___fieldOwners", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "childImageSharp___internal___ignoreType", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "childImageSharp___internal___mediaType", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "childImageSharp___internal___owner", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "childImageSharp___internal___type", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "childImageSharp___original___height", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "childImageSharp___original___src", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "childImageSharp___original___width", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "childImageSharp___parent___children", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "childImageSharp___parent___children___children", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "childImageSharp___parent___children___id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "childImageSharp___parent___id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "childImageSharp___parent___internal___content", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "childImageSharp___parent___internal___contentDigest", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "childImageSharp___parent___internal___description", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "childImageSharp___parent___internal___fieldOwners", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "childImageSharp___parent___internal___ignoreType", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "childImageSharp___parent___internal___mediaType", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "childImageSharp___parent___internal___owner", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "childImageSharp___parent___internal___type", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "childImageSharp___parent___parent___children", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "childImageSharp___parent___parent___id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "childImageSharp___resize___aspectRatio", + "description": null, + "isDeprecated": true, + "deprecationReason": "Sorting on fields that need arguments to resolve is deprecated." + }, + { + "name": "childImageSharp___resize___height", + "description": null, + "isDeprecated": true, + "deprecationReason": "Sorting on fields that need arguments to resolve is deprecated." + }, + { + "name": "childImageSharp___resize___originalName", + "description": null, + "isDeprecated": true, + "deprecationReason": "Sorting on fields that need arguments to resolve is deprecated." + }, + { + "name": "childImageSharp___resize___src", + "description": null, + "isDeprecated": true, + "deprecationReason": "Sorting on fields that need arguments to resolve is deprecated." + }, + { + "name": "childImageSharp___resize___tracedSVG", + "description": null, + "isDeprecated": true, + "deprecationReason": "Sorting on fields that need arguments to resolve is deprecated." + }, + { + "name": "childImageSharp___resize___width", + "description": null, + "isDeprecated": true, + "deprecationReason": "Sorting on fields that need arguments to resolve is deprecated." + }, + { + "name": "children", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "childrenImageSharp", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "childrenImageSharp___children", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "childrenImageSharp___children___children", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "childrenImageSharp___children___children___children", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "childrenImageSharp___children___children___id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "childrenImageSharp___children___id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "childrenImageSharp___children___internal___content", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "childrenImageSharp___children___internal___contentDigest", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "childrenImageSharp___children___internal___description", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "childrenImageSharp___children___internal___fieldOwners", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "childrenImageSharp___children___internal___ignoreType", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "childrenImageSharp___children___internal___mediaType", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "childrenImageSharp___children___internal___owner", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "childrenImageSharp___children___internal___type", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "childrenImageSharp___children___parent___children", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "childrenImageSharp___children___parent___id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "childrenImageSharp___fixed___aspectRatio", + "description": null, + "isDeprecated": true, + "deprecationReason": "Sorting on fields that need arguments to resolve is deprecated." + }, + { + "name": "childrenImageSharp___fixed___base64", + "description": null, + "isDeprecated": true, + "deprecationReason": "Sorting on fields that need arguments to resolve is deprecated." + }, + { + "name": "childrenImageSharp___fixed___height", + "description": null, + "isDeprecated": true, + "deprecationReason": "Sorting on fields that need arguments to resolve is deprecated." + }, + { + "name": "childrenImageSharp___fixed___originalName", + "description": null, + "isDeprecated": true, + "deprecationReason": "Sorting on fields that need arguments to resolve is deprecated." + }, + { + "name": "childrenImageSharp___fixed___src", + "description": null, + "isDeprecated": true, + "deprecationReason": "Sorting on fields that need arguments to resolve is deprecated." + }, + { + "name": "childrenImageSharp___fixed___srcSet", + "description": null, + "isDeprecated": true, + "deprecationReason": "Sorting on fields that need arguments to resolve is deprecated." + }, + { + "name": "childrenImageSharp___fixed___srcSetWebp", + "description": null, + "isDeprecated": true, + "deprecationReason": "Sorting on fields that need arguments to resolve is deprecated." + }, + { + "name": "childrenImageSharp___fixed___srcWebp", + "description": null, + "isDeprecated": true, + "deprecationReason": "Sorting on fields that need arguments to resolve is deprecated." + }, + { + "name": "childrenImageSharp___fixed___tracedSVG", + "description": null, + "isDeprecated": true, + "deprecationReason": "Sorting on fields that need arguments to resolve is deprecated." + }, + { + "name": "childrenImageSharp___fixed___width", + "description": null, + "isDeprecated": true, + "deprecationReason": "Sorting on fields that need arguments to resolve is deprecated." + }, + { + "name": "childrenImageSharp___fluid___aspectRatio", + "description": null, + "isDeprecated": true, + "deprecationReason": "Sorting on fields that need arguments to resolve is deprecated." + }, + { + "name": "childrenImageSharp___fluid___base64", + "description": null, + "isDeprecated": true, + "deprecationReason": "Sorting on fields that need arguments to resolve is deprecated." + }, + { + "name": "childrenImageSharp___fluid___originalImg", + "description": null, + "isDeprecated": true, + "deprecationReason": "Sorting on fields that need arguments to resolve is deprecated." + }, + { + "name": "childrenImageSharp___fluid___originalName", + "description": null, + "isDeprecated": true, + "deprecationReason": "Sorting on fields that need arguments to resolve is deprecated." + }, + { + "name": "childrenImageSharp___fluid___presentationHeight", + "description": null, + "isDeprecated": true, + "deprecationReason": "Sorting on fields that need arguments to resolve is deprecated." + }, + { + "name": "childrenImageSharp___fluid___presentationWidth", + "description": null, + "isDeprecated": true, + "deprecationReason": "Sorting on fields that need arguments to resolve is deprecated." + }, + { + "name": "childrenImageSharp___fluid___sizes", + "description": null, + "isDeprecated": true, + "deprecationReason": "Sorting on fields that need arguments to resolve is deprecated." + }, + { + "name": "childrenImageSharp___fluid___src", + "description": null, + "isDeprecated": true, + "deprecationReason": "Sorting on fields that need arguments to resolve is deprecated." + }, + { + "name": "childrenImageSharp___fluid___srcSet", + "description": null, + "isDeprecated": true, + "deprecationReason": "Sorting on fields that need arguments to resolve is deprecated." + }, + { + "name": "childrenImageSharp___fluid___srcSetWebp", + "description": null, + "isDeprecated": true, + "deprecationReason": "Sorting on fields that need arguments to resolve is deprecated." + }, + { + "name": "childrenImageSharp___fluid___srcWebp", + "description": null, + "isDeprecated": true, + "deprecationReason": "Sorting on fields that need arguments to resolve is deprecated." + }, + { + "name": "childrenImageSharp___fluid___tracedSVG", + "description": null, + "isDeprecated": true, + "deprecationReason": "Sorting on fields that need arguments to resolve is deprecated." + }, + { + "name": "childrenImageSharp___gatsbyImageData", + "description": null, + "isDeprecated": true, + "deprecationReason": "Sorting on fields that need arguments to resolve is deprecated." + }, + { + "name": "childrenImageSharp___id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "childrenImageSharp___internal___content", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "childrenImageSharp___internal___contentDigest", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "childrenImageSharp___internal___description", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "childrenImageSharp___internal___fieldOwners", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "childrenImageSharp___internal___ignoreType", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "childrenImageSharp___internal___mediaType", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "childrenImageSharp___internal___owner", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "childrenImageSharp___internal___type", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "childrenImageSharp___original___height", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "childrenImageSharp___original___src", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "childrenImageSharp___original___width", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "childrenImageSharp___parent___children", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "childrenImageSharp___parent___children___children", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "childrenImageSharp___parent___children___id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "childrenImageSharp___parent___id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "childrenImageSharp___parent___internal___content", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "childrenImageSharp___parent___internal___contentDigest", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "childrenImageSharp___parent___internal___description", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "childrenImageSharp___parent___internal___fieldOwners", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "childrenImageSharp___parent___internal___ignoreType", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "childrenImageSharp___parent___internal___mediaType", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "childrenImageSharp___parent___internal___owner", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "childrenImageSharp___parent___internal___type", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "childrenImageSharp___parent___parent___children", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "childrenImageSharp___parent___parent___id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "childrenImageSharp___resize___aspectRatio", + "description": null, + "isDeprecated": true, + "deprecationReason": "Sorting on fields that need arguments to resolve is deprecated." + }, + { + "name": "childrenImageSharp___resize___height", + "description": null, + "isDeprecated": true, + "deprecationReason": "Sorting on fields that need arguments to resolve is deprecated." + }, + { + "name": "childrenImageSharp___resize___originalName", + "description": null, + "isDeprecated": true, + "deprecationReason": "Sorting on fields that need arguments to resolve is deprecated." + }, + { + "name": "childrenImageSharp___resize___src", + "description": null, + "isDeprecated": true, + "deprecationReason": "Sorting on fields that need arguments to resolve is deprecated." + }, + { + "name": "childrenImageSharp___resize___tracedSVG", + "description": null, + "isDeprecated": true, + "deprecationReason": "Sorting on fields that need arguments to resolve is deprecated." + }, + { + "name": "childrenImageSharp___resize___width", + "description": null, + "isDeprecated": true, + "deprecationReason": "Sorting on fields that need arguments to resolve is deprecated." + }, + { + "name": "children___children", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___children___children", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___children___children___children", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___children___children___id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___children___id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___children___internal___content", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___children___internal___contentDigest", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___children___internal___description", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___children___internal___fieldOwners", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___children___internal___ignoreType", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___children___internal___mediaType", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___children___internal___owner", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___children___internal___type", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___children___parent___children", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___children___parent___id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___internal___content", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___internal___contentDigest", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___internal___description", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___internal___fieldOwners", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___internal___ignoreType", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___internal___mediaType", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___internal___owner", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___internal___type", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___parent___children", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___parent___children___children", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___parent___children___id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___parent___id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___parent___internal___content", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___parent___internal___contentDigest", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___parent___internal___description", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___parent___internal___fieldOwners", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___parent___internal___ignoreType", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___parent___internal___mediaType", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___parent___internal___owner", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___parent___internal___type", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___parent___parent___children", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___parent___parent___id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ctime", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ctimeMs", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "dev", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "dir", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ext", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "extension", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "gid", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ino", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "internal___content", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "internal___contentDigest", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "internal___description", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "internal___fieldOwners", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "internal___ignoreType", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "internal___mediaType", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "internal___owner", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "internal___type", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "mode", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "modifiedTime", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "mtime", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "mtimeMs", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nlink", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___children", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___children___children", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___children___children___children", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___children___children___id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___children___id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___children___internal___content", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___children___internal___contentDigest", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___children___internal___description", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___children___internal___fieldOwners", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___children___internal___ignoreType", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___children___internal___mediaType", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___children___internal___owner", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___children___internal___type", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___children___parent___children", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___children___parent___id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___internal___content", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___internal___contentDigest", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___internal___description", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___internal___fieldOwners", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___internal___ignoreType", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___internal___mediaType", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___internal___owner", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___internal___type", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___parent___children", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___parent___children___children", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___parent___children___id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___parent___id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___parent___internal___content", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___parent___internal___contentDigest", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___parent___internal___description", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___parent___internal___fieldOwners", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___parent___internal___ignoreType", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___parent___internal___mediaType", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___parent___internal___owner", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___parent___internal___type", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___parent___parent___children", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___parent___parent___id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "prettySize", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "publicURL", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "rdev", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "relativeDirectory", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "relativePath", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "root", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "size", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sourceInstanceName", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "uid", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "FileFilterInput", + "description": null, + "specifiedByUrl": null, + "fields": null, + "inputFields": [ + { + "name": "absolutePath", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "StringQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "accessTime", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "DateQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "atime", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "DateQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "atimeMs", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "FloatQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "base", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "StringQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "birthTime", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "DateQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "birthtime", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "DateQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "birthtimeMs", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "FloatQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "blksize", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "IntQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "blocks", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "IntQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "changeTime", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "DateQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "childImageSharp", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ImageSharpFilterInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "NodeFilterListInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "childrenImageSharp", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ImageSharpFilterListInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ctime", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "DateQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ctimeMs", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "FloatQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "dev", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "IntQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "dir", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "StringQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ext", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "StringQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "extension", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "StringQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "gid", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "IntQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "StringQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ino", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "FloatQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "internal", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "InternalFilterInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "mode", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "IntQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "modifiedTime", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "DateQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "mtime", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "DateQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "mtimeMs", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "FloatQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "StringQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nlink", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "IntQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "NodeFilterInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "prettySize", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "StringQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "publicURL", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "StringQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "rdev", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "IntQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "relativeDirectory", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "StringQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "relativePath", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "StringQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "root", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "StringQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "size", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "IntQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sourceInstanceName", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "StringQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "uid", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "IntQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "FileGroupConnection", + "description": null, + "specifiedByUrl": null, + "fields": [ + { + "name": "distinct", + "description": null, + "args": [ + { + "name": "field", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "FileFieldsEnum", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "edges", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "FileEdge", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "field", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "fieldValue", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "group", + "description": null, + "args": [ + { + "name": "field", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "FileFieldsEnum", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "limit", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "FileGroupConnection", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "max", + "description": null, + "args": [ + { + "name": "field", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "FileFieldsEnum", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "min", + "description": null, + "args": [ + { + "name": "field", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "FileFieldsEnum", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nodes", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "File", + "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": "sum", + "description": null, + "args": [ + { + "name": "field", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "FileFieldsEnum", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "totalCount", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "FileSortInput", + "description": null, + "specifiedByUrl": null, + "fields": null, + "inputFields": [ + { + "name": "fields", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "FileFieldsEnum", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "order", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "SortOrderEnum", + "ofType": null + } + }, + "defaultValue": "[ASC]", + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "SCALAR", + "name": "Float", + "description": "The `Float` scalar type represents signed double-precision fractional values as specified by [IEEE 754](https://en.wikipedia.org/wiki/IEEE_floating_point).", + "specifiedByUrl": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "FloatQueryOperatorInput", + "description": null, + "specifiedByUrl": null, + "fields": null, + "inputFields": [ + { + "name": "eq", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ne", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nin", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "GatsbyImageFormat", + "description": null, + "specifiedByUrl": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "AUTO", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "AVIF", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "JPG", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "NO_CHANGE", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "PNG", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "WEBP", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "GatsbyImageLayout", + "description": null, + "specifiedByUrl": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "CONSTRAINED", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "FIXED", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "FULL_WIDTH", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "GatsbyImagePlaceholder", + "description": null, + "specifiedByUrl": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "BLURRED", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "DOMINANT_COLOR", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "NONE", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "TRACED_SVG", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "HeadingsMdx", + "description": null, + "specifiedByUrl": 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": "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.", + "specifiedByUrl": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "ImageCropFocus", + "description": null, + "specifiedByUrl": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "ATTENTION", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "CENTER", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "EAST", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ENTROPY", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "NORTH", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "NORTHEAST", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "NORTHWEST", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "SOUTH", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "SOUTHEAST", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "SOUTHWEST", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "WEST", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "ImageFit", + "description": null, + "specifiedByUrl": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "CONTAIN", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "COVER", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "FILL", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "INSIDE", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "OUTSIDE", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "ImageFormat", + "description": null, + "specifiedByUrl": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "AUTO", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "AVIF", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "JPG", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "NO_CHANGE", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "PNG", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "WEBP", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "ImageLayout", + "description": null, + "specifiedByUrl": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "CONSTRAINED", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "FIXED", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "FULL_WIDTH", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "ImagePlaceholder", + "description": null, + "specifiedByUrl": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "BLURRED", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "DOMINANT_COLOR", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "NONE", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "TRACED_SVG", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ImageSharp", + "description": null, + "specifiedByUrl": null, + "fields": [ + { + "name": "children", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "fixed", + "description": null, + "args": [ + { + "name": "background", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": "\"rgba(0,0,0,1)\"", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "base64Width", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cropFocus", + "description": null, + "type": { + "kind": "ENUM", + "name": "ImageCropFocus", + "ofType": null + }, + "defaultValue": "ATTENTION", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "duotone", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "DuotoneGradient", + "ofType": null + }, + "defaultValue": "{}", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "fit", + "description": null, + "type": { + "kind": "ENUM", + "name": "ImageFit", + "ofType": null + }, + "defaultValue": "COVER", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "grayscale", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": "false", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "height", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "jpegProgressive", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": "true", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "jpegQuality", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pngCompressionSpeed", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "4", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pngQuality", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "quality", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "rotate", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "0", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "toFormat", + "description": null, + "type": { + "kind": "ENUM", + "name": "ImageFormat", + "ofType": null + }, + "defaultValue": "NO_CHANGE", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "toFormatBase64", + "description": null, + "type": { + "kind": "ENUM", + "name": "ImageFormat", + "ofType": null + }, + "defaultValue": "NO_CHANGE", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "traceSVG", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "Potrace", + "ofType": null + }, + "defaultValue": "{}", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "trim", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": "0", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "webpQuality", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "width", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "ImageSharpFixed", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "fluid", + "description": null, + "args": [ + { + "name": "background", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": "\"rgba(0,0,0,1)\"", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "base64Width", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cropFocus", + "description": null, + "type": { + "kind": "ENUM", + "name": "ImageCropFocus", + "ofType": null + }, + "defaultValue": "ATTENTION", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "duotone", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "DuotoneGradient", + "ofType": null + }, + "defaultValue": "{}", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "fit", + "description": null, + "type": { + "kind": "ENUM", + "name": "ImageFit", + "ofType": null + }, + "defaultValue": "COVER", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "grayscale", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": "false", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "jpegProgressive", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": "true", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "jpegQuality", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "maxHeight", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "maxWidth", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pngCompressionSpeed", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "4", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pngQuality", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "quality", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "rotate", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "0", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sizes", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": "\"\"", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "srcSetBreakpoints", + "description": "A list of image widths to be generated. Example: [ 200, 340, 520, 890 ]", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "defaultValue": "[]", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "toFormat", + "description": null, + "type": { + "kind": "ENUM", + "name": "ImageFormat", + "ofType": null + }, + "defaultValue": "NO_CHANGE", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "toFormatBase64", + "description": null, + "type": { + "kind": "ENUM", + "name": "ImageFormat", + "ofType": null + }, + "defaultValue": "NO_CHANGE", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "traceSVG", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "Potrace", + "ofType": null + }, + "defaultValue": "{}", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "trim", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": "0", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "webpQuality", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "ImageSharpFluid", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "gatsbyImageData", + "description": null, + "args": [ + { + "name": "aspectRatio", + "description": "If set along with width or height, this will set the value of the other dimension to match the provided aspect ratio, cropping the image if needed.\nIf neither width or height is provided, height will be set based on the intrinsic width of the source image.", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "avifOptions", + "description": "Options to pass to sharp when generating AVIF images.", + "type": { + "kind": "INPUT_OBJECT", + "name": "AVIFOptions", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "backgroundColor", + "description": "Background color applied to the wrapper. Also passed to sharp to use as a background when \"letterboxing\" an image to another aspect ratio.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "blurredOptions", + "description": "Options for the low-resolution placeholder image. Set placeholder to \"BLURRED\" to use this", + "type": { + "kind": "INPUT_OBJECT", + "name": "BlurredOptions", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "breakpoints", + "description": "Specifies the image widths to generate. For FIXED and CONSTRAINED images it is better to allow these to be determined automatically,\nbased on the image size. For FULL_WIDTH images this can be used to override the default, which is [750, 1080, 1366, 1920].\nIt will never generate any images larger than the source.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "formats", + "description": "The image formats to generate. Valid values are \"AUTO\" (meaning the same format as the source image), \"JPG\", \"PNG\", \"WEBP\" and \"AVIF\".\nThe default value is [AUTO, WEBP], and you should rarely need to change this. Take care if you specify JPG or PNG when you do\nnot know the formats of the source images, as this could lead to unwanted results such as converting JPEGs to PNGs. Specifying\nboth PNG and JPG is not supported and will be ignored.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ImageFormat", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "height", + "description": "The display height of the generated image for layout = FIXED, and the maximum display height of the largest image for layout = CONSTRAINED.\nThe image will be cropped if the aspect ratio does not match the source image. If omitted, it is calculated from the supplied width,\nmatching the aspect ratio of the source image.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "jpgOptions", + "description": "Options to pass to sharp when generating JPG images.", + "type": { + "kind": "INPUT_OBJECT", + "name": "JPGOptions", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "layout", + "description": "The layout for the image.\nFIXED: A static image sized, that does not resize according to the screen width\nFULL_WIDTH: The image resizes to fit its container. Pass a \"sizes\" option if it isn't going to be the full width of the screen.\nCONSTRAINED: Resizes to fit its container, up to a maximum width, at which point it will remain fixed in size.", + "type": { + "kind": "ENUM", + "name": "ImageLayout", + "ofType": null + }, + "defaultValue": "CONSTRAINED", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "outputPixelDensities", + "description": "A list of image pixel densities to generate. It will never generate images larger than the source, and will always include a 1x image.\nDefault is [ 1, 2 ] for FIXED images, meaning 1x and 2x and [0.25, 0.5, 1, 2] for CONSTRAINED. In this case, an image with a constrained layout\nand width = 400 would generate images at 100, 200, 400 and 800px wide. Ignored for FULL_WIDTH images, which use breakpoints instead", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "placeholder", + "description": "Format of generated placeholder image, displayed while the main image loads.\nBLURRED: a blurred, low resolution image, encoded as a base64 data URI (default)\nDOMINANT_COLOR: a solid color, calculated from the dominant color of the image.\nTRACED_SVG: a low-resolution traced SVG of the image.\nNONE: no placeholder. Set \"background\" to use a fixed background color.", + "type": { + "kind": "ENUM", + "name": "ImagePlaceholder", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pngOptions", + "description": "Options to pass to sharp when generating PNG images.", + "type": { + "kind": "INPUT_OBJECT", + "name": "PNGOptions", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "quality", + "description": "The default quality. This is overridden by any format-specific options", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sizes", + "description": "The \"sizes\" property, passed to the img tag. This describes the display size of the image.\nThis does not affect the generated images, but is used by the browser to decide which images to download.\nYou should usually leave this blank, and a suitable value will be calculated. The exception is if a FULL_WIDTH image\ndoes not actually span the full width of the screen, in which case you should pass the correct size here.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "tracedSVGOptions", + "description": "Options for traced placeholder SVGs. You also should set placeholder to \"TRACED_SVG\".", + "type": { + "kind": "INPUT_OBJECT", + "name": "Potrace", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "transformOptions", + "description": "Options to pass to sharp to control cropping and other image manipulations.", + "type": { + "kind": "INPUT_OBJECT", + "name": "TransformOptions", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "webpOptions", + "description": "Options to pass to sharp when generating WebP images.", + "type": { + "kind": "INPUT_OBJECT", + "name": "WebPOptions", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "width", + "description": "The display width of the generated image for layout = FIXED, and the maximum display width of the largest image for layout = CONSTRAINED.\nIgnored if layout = FLUID.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "JSON", + "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": false, + "deprecationReason": null + }, + { + "name": "internal", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Internal", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "original", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "ImageSharpOriginal", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent", + "description": null, + "args": [], + "type": { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "resize", + "description": null, + "args": [ + { + "name": "background", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": "\"rgba(0,0,0,1)\"", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "base64", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": "false", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cropFocus", + "description": null, + "type": { + "kind": "ENUM", + "name": "ImageCropFocus", + "ofType": null + }, + "defaultValue": "ATTENTION", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "duotone", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "DuotoneGradient", + "ofType": null + }, + "defaultValue": "{}", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "fit", + "description": null, + "type": { + "kind": "ENUM", + "name": "ImageFit", + "ofType": null + }, + "defaultValue": "COVER", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "grayscale", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": "false", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "height", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "jpegProgressive", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": "true", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "jpegQuality", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pngCompressionLevel", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "9", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pngCompressionSpeed", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "4", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pngQuality", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "quality", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "rotate", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "0", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "toFormat", + "description": null, + "type": { + "kind": "ENUM", + "name": "ImageFormat", + "ofType": null + }, + "defaultValue": "NO_CHANGE", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "traceSVG", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "Potrace", + "ofType": null + }, + "defaultValue": "{}", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "trim", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": "0", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "webpQuality", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "width", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "ImageSharpResize", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ImageSharpConnection", + "description": null, + "specifiedByUrl": null, + "fields": [ + { + "name": "distinct", + "description": null, + "args": [ + { + "name": "field", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ImageSharpFieldsEnum", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "edges", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ImageSharpEdge", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "group", + "description": null, + "args": [ + { + "name": "field", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ImageSharpFieldsEnum", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "limit", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ImageSharpGroupConnection", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "max", + "description": null, + "args": [ + { + "name": "field", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ImageSharpFieldsEnum", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "min", + "description": null, + "args": [ + { + "name": "field", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ImageSharpFieldsEnum", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nodes", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ImageSharp", + "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": "sum", + "description": null, + "args": [ + { + "name": "field", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ImageSharpFieldsEnum", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "totalCount", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ImageSharpEdge", + "description": null, + "specifiedByUrl": null, + "fields": [ + { + "name": "next", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "ImageSharp", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "node", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ImageSharp", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "previous", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "ImageSharp", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "ImageSharpFieldsEnum", + "description": null, + "specifiedByUrl": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "children", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___children", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___children___children", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___children___children___children", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___children___children___id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___children___id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___children___internal___content", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___children___internal___contentDigest", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___children___internal___description", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___children___internal___fieldOwners", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___children___internal___ignoreType", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___children___internal___mediaType", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___children___internal___owner", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___children___internal___type", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___children___parent___children", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___children___parent___id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___internal___content", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___internal___contentDigest", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___internal___description", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___internal___fieldOwners", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___internal___ignoreType", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___internal___mediaType", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___internal___owner", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___internal___type", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___parent___children", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___parent___children___children", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___parent___children___id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___parent___id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___parent___internal___content", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___parent___internal___contentDigest", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___parent___internal___description", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___parent___internal___fieldOwners", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___parent___internal___ignoreType", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___parent___internal___mediaType", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___parent___internal___owner", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___parent___internal___type", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___parent___parent___children", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___parent___parent___id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "fixed___aspectRatio", + "description": null, + "isDeprecated": true, + "deprecationReason": "Sorting on fields that need arguments to resolve is deprecated." + }, + { + "name": "fixed___base64", + "description": null, + "isDeprecated": true, + "deprecationReason": "Sorting on fields that need arguments to resolve is deprecated." + }, + { + "name": "fixed___height", + "description": null, + "isDeprecated": true, + "deprecationReason": "Sorting on fields that need arguments to resolve is deprecated." + }, + { + "name": "fixed___originalName", + "description": null, + "isDeprecated": true, + "deprecationReason": "Sorting on fields that need arguments to resolve is deprecated." + }, + { + "name": "fixed___src", + "description": null, + "isDeprecated": true, + "deprecationReason": "Sorting on fields that need arguments to resolve is deprecated." + }, + { + "name": "fixed___srcSet", + "description": null, + "isDeprecated": true, + "deprecationReason": "Sorting on fields that need arguments to resolve is deprecated." + }, + { + "name": "fixed___srcSetWebp", + "description": null, + "isDeprecated": true, + "deprecationReason": "Sorting on fields that need arguments to resolve is deprecated." + }, + { + "name": "fixed___srcWebp", + "description": null, + "isDeprecated": true, + "deprecationReason": "Sorting on fields that need arguments to resolve is deprecated." + }, + { + "name": "fixed___tracedSVG", + "description": null, + "isDeprecated": true, + "deprecationReason": "Sorting on fields that need arguments to resolve is deprecated." + }, + { + "name": "fixed___width", + "description": null, + "isDeprecated": true, + "deprecationReason": "Sorting on fields that need arguments to resolve is deprecated." + }, + { + "name": "fluid___aspectRatio", + "description": null, + "isDeprecated": true, + "deprecationReason": "Sorting on fields that need arguments to resolve is deprecated." + }, + { + "name": "fluid___base64", + "description": null, + "isDeprecated": true, + "deprecationReason": "Sorting on fields that need arguments to resolve is deprecated." + }, + { + "name": "fluid___originalImg", + "description": null, + "isDeprecated": true, + "deprecationReason": "Sorting on fields that need arguments to resolve is deprecated." + }, + { + "name": "fluid___originalName", + "description": null, + "isDeprecated": true, + "deprecationReason": "Sorting on fields that need arguments to resolve is deprecated." + }, + { + "name": "fluid___presentationHeight", + "description": null, + "isDeprecated": true, + "deprecationReason": "Sorting on fields that need arguments to resolve is deprecated." + }, + { + "name": "fluid___presentationWidth", + "description": null, + "isDeprecated": true, + "deprecationReason": "Sorting on fields that need arguments to resolve is deprecated." + }, + { + "name": "fluid___sizes", + "description": null, + "isDeprecated": true, + "deprecationReason": "Sorting on fields that need arguments to resolve is deprecated." + }, + { + "name": "fluid___src", + "description": null, + "isDeprecated": true, + "deprecationReason": "Sorting on fields that need arguments to resolve is deprecated." + }, + { + "name": "fluid___srcSet", + "description": null, + "isDeprecated": true, + "deprecationReason": "Sorting on fields that need arguments to resolve is deprecated." + }, + { + "name": "fluid___srcSetWebp", + "description": null, + "isDeprecated": true, + "deprecationReason": "Sorting on fields that need arguments to resolve is deprecated." + }, + { + "name": "fluid___srcWebp", + "description": null, + "isDeprecated": true, + "deprecationReason": "Sorting on fields that need arguments to resolve is deprecated." + }, + { + "name": "fluid___tracedSVG", + "description": null, + "isDeprecated": true, + "deprecationReason": "Sorting on fields that need arguments to resolve is deprecated." + }, + { + "name": "gatsbyImageData", + "description": null, + "isDeprecated": true, + "deprecationReason": "Sorting on fields that need arguments to resolve is deprecated." + }, + { + "name": "id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "internal___content", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "internal___contentDigest", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "internal___description", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "internal___fieldOwners", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "internal___ignoreType", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "internal___mediaType", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "internal___owner", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "internal___type", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "original___height", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "original___src", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "original___width", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___children", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___children___children", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___children___children___children", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___children___children___id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___children___id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___children___internal___content", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___children___internal___contentDigest", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___children___internal___description", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___children___internal___fieldOwners", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___children___internal___ignoreType", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___children___internal___mediaType", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___children___internal___owner", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___children___internal___type", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___children___parent___children", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___children___parent___id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___internal___content", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___internal___contentDigest", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___internal___description", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___internal___fieldOwners", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___internal___ignoreType", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___internal___mediaType", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___internal___owner", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___internal___type", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___parent___children", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___parent___children___children", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___parent___children___id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___parent___id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___parent___internal___content", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___parent___internal___contentDigest", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___parent___internal___description", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___parent___internal___fieldOwners", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___parent___internal___ignoreType", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___parent___internal___mediaType", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___parent___internal___owner", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___parent___internal___type", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___parent___parent___children", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___parent___parent___id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "resize___aspectRatio", + "description": null, + "isDeprecated": true, + "deprecationReason": "Sorting on fields that need arguments to resolve is deprecated." + }, + { + "name": "resize___height", + "description": null, + "isDeprecated": true, + "deprecationReason": "Sorting on fields that need arguments to resolve is deprecated." + }, + { + "name": "resize___originalName", + "description": null, + "isDeprecated": true, + "deprecationReason": "Sorting on fields that need arguments to resolve is deprecated." + }, + { + "name": "resize___src", + "description": null, + "isDeprecated": true, + "deprecationReason": "Sorting on fields that need arguments to resolve is deprecated." + }, + { + "name": "resize___tracedSVG", + "description": null, + "isDeprecated": true, + "deprecationReason": "Sorting on fields that need arguments to resolve is deprecated." + }, + { + "name": "resize___width", + "description": null, + "isDeprecated": true, + "deprecationReason": "Sorting on fields that need arguments to resolve is deprecated." + } + ], + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ImageSharpFilterInput", + "description": null, + "specifiedByUrl": null, + "fields": null, + "inputFields": [ + { + "name": "children", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "NodeFilterListInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "fixed", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ImageSharpFixedFilterInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "fluid", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ImageSharpFluidFilterInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "gatsbyImageData", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "JSONQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "StringQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "internal", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "InternalFilterInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "original", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ImageSharpOriginalFilterInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "NodeFilterInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "resize", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ImageSharpResizeFilterInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ImageSharpFilterListInput", + "description": null, + "specifiedByUrl": null, + "fields": null, + "inputFields": [ + { + "name": "elemMatch", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ImageSharpFilterInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ImageSharpFixed", + "description": null, + "specifiedByUrl": null, + "fields": [ + { + "name": "aspectRatio", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "base64", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "height", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "originalName", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "src", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "srcSet", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "srcSetWebp", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "srcWebp", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "tracedSVG", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "width", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ImageSharpFixedFilterInput", + "description": null, + "specifiedByUrl": null, + "fields": null, + "inputFields": [ + { + "name": "aspectRatio", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "FloatQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "base64", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "StringQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "height", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "FloatQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "originalName", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "StringQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "src", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "StringQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "srcSet", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "StringQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "srcSetWebp", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "StringQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "srcWebp", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "StringQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "tracedSVG", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "StringQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "width", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "FloatQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ImageSharpFluid", + "description": null, + "specifiedByUrl": null, + "fields": [ + { + "name": "aspectRatio", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "base64", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "originalImg", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "originalName", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "presentationHeight", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "presentationWidth", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sizes", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "src", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "srcSet", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "srcSetWebp", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "srcWebp", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "tracedSVG", + "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": "ImageSharpFluidFilterInput", + "description": null, + "specifiedByUrl": null, + "fields": null, + "inputFields": [ + { + "name": "aspectRatio", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "FloatQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "base64", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "StringQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "originalImg", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "StringQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "originalName", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "StringQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "presentationHeight", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "IntQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "presentationWidth", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "IntQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sizes", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "StringQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "src", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "StringQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "srcSet", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "StringQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "srcSetWebp", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "StringQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "srcWebp", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "StringQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "tracedSVG", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "StringQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ImageSharpGroupConnection", + "description": null, + "specifiedByUrl": null, + "fields": [ + { + "name": "distinct", + "description": null, + "args": [ + { + "name": "field", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ImageSharpFieldsEnum", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "edges", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ImageSharpEdge", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "field", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "fieldValue", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "group", + "description": null, + "args": [ + { + "name": "field", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ImageSharpFieldsEnum", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "limit", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ImageSharpGroupConnection", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "max", + "description": null, + "args": [ + { + "name": "field", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ImageSharpFieldsEnum", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "min", + "description": null, + "args": [ + { + "name": "field", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ImageSharpFieldsEnum", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nodes", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ImageSharp", + "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": "sum", + "description": null, + "args": [ + { + "name": "field", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ImageSharpFieldsEnum", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "totalCount", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ImageSharpOriginal", + "description": null, + "specifiedByUrl": null, + "fields": [ + { + "name": "height", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "src", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "width", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ImageSharpOriginalFilterInput", + "description": null, + "specifiedByUrl": null, + "fields": null, + "inputFields": [ + { + "name": "height", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "FloatQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "src", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "StringQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "width", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "FloatQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ImageSharpResize", + "description": null, + "specifiedByUrl": null, + "fields": [ + { + "name": "aspectRatio", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "height", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "originalName", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "src", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "tracedSVG", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "width", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ImageSharpResizeFilterInput", + "description": null, + "specifiedByUrl": null, + "fields": null, + "inputFields": [ + { + "name": "aspectRatio", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "FloatQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "height", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "IntQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "originalName", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "StringQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "src", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "StringQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "tracedSVG", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "StringQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "width", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "IntQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ImageSharpSortInput", + "description": null, + "specifiedByUrl": null, + "fields": null, + "inputFields": [ + { + "name": "fields", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ImageSharpFieldsEnum", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "order", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "SortOrderEnum", + "ofType": null + } + }, + "defaultValue": "[ASC]", + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": 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.", + "specifiedByUrl": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "IntQueryOperatorInput", + "description": null, + "specifiedByUrl": null, + "fields": null, + "inputFields": [ + { + "name": "eq", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ne", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nin", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "Internal", + "description": null, + "specifiedByUrl": null, + "fields": [ + { + "name": "content", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "contentDigest", + "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": "fieldOwners", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ignoreType", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "mediaType", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "owner", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "InternalFilterInput", + "description": null, + "specifiedByUrl": null, + "fields": null, + "inputFields": [ + { + "name": "content", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "StringQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "contentDigest", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "StringQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "description", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "StringQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "fieldOwners", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "StringQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ignoreType", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "BooleanQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "mediaType", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "StringQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "owner", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "StringQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "StringQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "JPGOptions", + "description": null, + "specifiedByUrl": null, + "fields": null, + "inputFields": [ + { + "name": "progressive", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": "true", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "quality", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "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).", + "specifiedByUrl": "http://www.ecma-international.org/publications/files/ECMA-ST/ECMA-404.pdf", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "JSONQueryOperatorInput", + "description": null, + "specifiedByUrl": null, + "fields": null, + "inputFields": [ + { + "name": "eq", + "description": null, + "type": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "glob", + "description": null, + "type": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ne", + "description": null, + "type": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nin", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "regex", + "description": null, + "type": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "Mdx", + "description": null, + "specifiedByUrl": null, + "fields": [ + { + "name": "body", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "excerpt", + "description": null, + "args": [ + { + "name": "pruneLength", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "140", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "truncate", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": "false", + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "fileAbsolutePath", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "frontmatter", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "MdxFrontmatter", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "headings", + "description": null, + "args": [ + { + "name": "depth", + "description": null, + "type": { + "kind": "ENUM", + "name": "HeadingsMdx", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "MdxHeadingMdx", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "html", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "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": false, + "deprecationReason": null + }, + { + "name": "internal", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Internal", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "mdxAST", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent", + "description": null, + "args": [], + "type": { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "rawBody", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "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": "tableOfContents", + "description": null, + "args": [ + { + "name": "maxDepth", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "timeToRead", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "wordCount", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "MdxWordCount", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "MdxConnection", + "description": null, + "specifiedByUrl": null, + "fields": [ + { + "name": "distinct", + "description": null, + "args": [ + { + "name": "field", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MdxFieldsEnum", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "edges", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "MdxEdge", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "group", + "description": null, + "args": [ + { + "name": "field", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MdxFieldsEnum", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "limit", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "MdxGroupConnection", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "max", + "description": null, + "args": [ + { + "name": "field", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MdxFieldsEnum", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "min", + "description": null, + "args": [ + { + "name": "field", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MdxFieldsEnum", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nodes", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Mdx", + "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": "sum", + "description": null, + "args": [ + { + "name": "field", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MdxFieldsEnum", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "totalCount", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "MdxEdge", + "description": null, + "specifiedByUrl": null, + "fields": [ + { + "name": "next", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Mdx", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "node", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Mdx", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "previous", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Mdx", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "MdxFieldsEnum", + "description": null, + "specifiedByUrl": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "body", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___children", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___children___children", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___children___children___children", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___children___children___id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___children___id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___children___internal___content", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___children___internal___contentDigest", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___children___internal___description", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___children___internal___fieldOwners", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___children___internal___ignoreType", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___children___internal___mediaType", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___children___internal___owner", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___children___internal___type", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___children___parent___children", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___children___parent___id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___internal___content", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___internal___contentDigest", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___internal___description", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___internal___fieldOwners", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___internal___ignoreType", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___internal___mediaType", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___internal___owner", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___internal___type", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___parent___children", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___parent___children___children", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___parent___children___id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___parent___id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___parent___internal___content", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___parent___internal___contentDigest", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___parent___internal___description", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___parent___internal___fieldOwners", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___parent___internal___ignoreType", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___parent___internal___mediaType", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___parent___internal___owner", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___parent___internal___type", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___parent___parent___children", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___parent___parent___id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "excerpt", + "description": null, + "isDeprecated": true, + "deprecationReason": "Sorting on fields that need arguments to resolve is deprecated." + }, + { + "name": "fileAbsolutePath", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "frontmatter___title", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "headings", + "description": null, + "isDeprecated": true, + "deprecationReason": "Sorting on fields that need arguments to resolve is deprecated." + }, + { + "name": "headings___depth", + "description": null, + "isDeprecated": true, + "deprecationReason": "Sorting on fields that need arguments to resolve is deprecated." + }, + { + "name": "headings___value", + "description": null, + "isDeprecated": true, + "deprecationReason": "Sorting on fields that need arguments to resolve is deprecated." + }, + { + "name": "html", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "internal___content", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "internal___contentDigest", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "internal___description", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "internal___fieldOwners", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "internal___ignoreType", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "internal___mediaType", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "internal___owner", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "internal___type", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "mdxAST", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___children", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___children___children", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___children___children___children", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___children___children___id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___children___id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___children___internal___content", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___children___internal___contentDigest", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___children___internal___description", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___children___internal___fieldOwners", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___children___internal___ignoreType", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___children___internal___mediaType", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___children___internal___owner", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___children___internal___type", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___children___parent___children", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___children___parent___id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___internal___content", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___internal___contentDigest", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___internal___description", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___internal___fieldOwners", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___internal___ignoreType", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___internal___mediaType", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___internal___owner", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___internal___type", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___parent___children", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___parent___children___children", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___parent___children___id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___parent___id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___parent___internal___content", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___parent___internal___contentDigest", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___parent___internal___description", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___parent___internal___fieldOwners", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___parent___internal___ignoreType", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___parent___internal___mediaType", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___parent___internal___owner", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___parent___internal___type", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___parent___parent___children", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___parent___parent___id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "rawBody", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "slug", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "tableOfContents", + "description": null, + "isDeprecated": true, + "deprecationReason": "Sorting on fields that need arguments to resolve is deprecated." + }, + { + "name": "timeToRead", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "wordCount___paragraphs", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "wordCount___sentences", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "wordCount___words", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "MdxFilterInput", + "description": null, + "specifiedByUrl": null, + "fields": null, + "inputFields": [ + { + "name": "body", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "StringQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "NodeFilterListInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "excerpt", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "StringQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "fileAbsolutePath", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "StringQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "frontmatter", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "MdxFrontmatterFilterInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "headings", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "MdxHeadingMdxFilterListInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "html", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "StringQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "StringQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "internal", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "InternalFilterInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "mdxAST", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "JSONQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "NodeFilterInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "rawBody", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "StringQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "slug", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "StringQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "tableOfContents", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "JSONQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "timeToRead", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "IntQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "wordCount", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "MdxWordCountFilterInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "MdxFrontmatter", + "description": null, + "specifiedByUrl": null, + "fields": [ + { + "name": "title", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "MdxFrontmatterFilterInput", + "description": null, + "specifiedByUrl": null, + "fields": null, + "inputFields": [ + { + "name": "title", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "StringQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "MdxGroupConnection", + "description": null, + "specifiedByUrl": null, + "fields": [ + { + "name": "distinct", + "description": null, + "args": [ + { + "name": "field", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MdxFieldsEnum", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "edges", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "MdxEdge", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "field", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "fieldValue", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "group", + "description": null, + "args": [ + { + "name": "field", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MdxFieldsEnum", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "limit", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "MdxGroupConnection", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "max", + "description": null, + "args": [ + { + "name": "field", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MdxFieldsEnum", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "min", + "description": null, + "args": [ + { + "name": "field", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MdxFieldsEnum", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nodes", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Mdx", + "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": "sum", + "description": null, + "args": [ + { + "name": "field", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MdxFieldsEnum", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "totalCount", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "MdxHeadingMdx", + "description": null, + "specifiedByUrl": 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 + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "MdxHeadingMdxFilterInput", + "description": null, + "specifiedByUrl": null, + "fields": null, + "inputFields": [ + { + "name": "depth", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "IntQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "value", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "StringQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "MdxHeadingMdxFilterListInput", + "description": null, + "specifiedByUrl": null, + "fields": null, + "inputFields": [ + { + "name": "elemMatch", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "MdxHeadingMdxFilterInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "MdxSortInput", + "description": null, + "specifiedByUrl": null, + "fields": null, + "inputFields": [ + { + "name": "fields", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MdxFieldsEnum", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "order", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "SortOrderEnum", + "ofType": null + } + }, + "defaultValue": "[ASC]", + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "MdxWordCount", + "description": null, + "specifiedByUrl": null, + "fields": [ + { + "name": "paragraphs", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sentences", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "words", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "MdxWordCountFilterInput", + "description": null, + "specifiedByUrl": null, + "fields": null, + "inputFields": [ + { + "name": "paragraphs", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "IntQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sentences", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "IntQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "words", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "IntQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INTERFACE", + "name": "Node", + "description": "Node Interface", + "specifiedByUrl": null, + "fields": [ + { + "name": "children", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INTERFACE", + "name": "Node", + "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": false, + "deprecationReason": null + }, + { + "name": "internal", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Internal", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent", + "description": null, + "args": [], + "type": { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "Directory", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "File", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "ImageSharp", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "Mdx", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "Site", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "SiteBuildMetadata", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "SiteFunction", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "SitePage", + "ofType": null + } + ] + }, + { + "kind": "INPUT_OBJECT", + "name": "NodeFilterInput", + "description": null, + "specifiedByUrl": null, + "fields": null, + "inputFields": [ + { + "name": "children", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "NodeFilterListInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "StringQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "internal", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "InternalFilterInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "NodeFilterInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "NodeFilterListInput", + "description": null, + "specifiedByUrl": null, + "fields": null, + "inputFields": [ + { + "name": "elemMatch", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "NodeFilterInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "PNGOptions", + "description": null, + "specifiedByUrl": null, + "fields": null, + "inputFields": [ + { + "name": "compressionSpeed", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "4", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "quality", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "PageInfo", + "description": null, + "specifiedByUrl": null, + "fields": [ + { + "name": "currentPage", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "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": "hasPreviousPage", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "itemCount", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pageCount", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "perPage", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "totalCount", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "Potrace", + "description": null, + "specifiedByUrl": null, + "fields": null, + "inputFields": [ + { + "name": "alphaMax", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "background", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "blackOnWhite", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "color", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "optCurve", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "optTolerance", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "threshold", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "turdSize", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "turnPolicy", + "description": null, + "type": { + "kind": "ENUM", + "name": "PotraceTurnPolicy", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "PotraceTurnPolicy", + "description": null, + "specifiedByUrl": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "TURNPOLICY_BLACK", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "TURNPOLICY_LEFT", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "TURNPOLICY_MAJORITY", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "TURNPOLICY_MINORITY", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "TURNPOLICY_RIGHT", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "TURNPOLICY_WHITE", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "Query", + "description": null, + "specifiedByUrl": null, + "fields": [ + { + "name": "allDirectory", + "description": null, + "args": [ + { + "name": "filter", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "DirectoryFilterInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "limit", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sort", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "DirectorySortInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "DirectoryConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "allFile", + "description": null, + "args": [ + { + "name": "filter", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "FileFilterInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "limit", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sort", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "FileSortInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "FileConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "allImageSharp", + "description": null, + "args": [ + { + "name": "filter", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ImageSharpFilterInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "limit", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sort", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ImageSharpSortInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ImageSharpConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "allMdx", + "description": null, + "args": [ + { + "name": "filter", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "MdxFilterInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "limit", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sort", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "MdxSortInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "MdxConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "allSite", + "description": null, + "args": [ + { + "name": "filter", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SiteFilterInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "limit", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sort", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SiteSortInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SiteConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "allSiteBuildMetadata", + "description": null, + "args": [ + { + "name": "filter", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SiteBuildMetadataFilterInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "limit", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sort", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SiteBuildMetadataSortInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SiteBuildMetadataConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "allSiteFunction", + "description": null, + "args": [ + { + "name": "filter", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SiteFunctionFilterInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "limit", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sort", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SiteFunctionSortInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SiteFunctionConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "allSitePage", + "description": null, + "args": [ + { + "name": "filter", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SitePageFilterInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "limit", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sort", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SitePageSortInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SitePageConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "directory", + "description": null, + "args": [ + { + "name": "absolutePath", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "StringQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "accessTime", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "DateQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "atime", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "DateQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "atimeMs", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "FloatQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "base", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "StringQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "birthTime", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "DateQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "birthtime", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "DateQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "birthtimeMs", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "FloatQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "changeTime", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "DateQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "NodeFilterListInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ctime", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "DateQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ctimeMs", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "FloatQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "dev", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "IntQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "dir", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "StringQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ext", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "StringQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "extension", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "StringQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "gid", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "IntQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "StringQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ino", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "FloatQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "internal", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "InternalFilterInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "mode", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "IntQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "modifiedTime", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "DateQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "mtime", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "DateQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "mtimeMs", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "FloatQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "StringQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nlink", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "IntQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "NodeFilterInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "prettySize", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "StringQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "rdev", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "IntQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "relativeDirectory", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "StringQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "relativePath", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "StringQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "root", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "StringQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "size", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "IntQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sourceInstanceName", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "StringQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "uid", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "IntQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "Directory", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "file", + "description": null, + "args": [ + { + "name": "absolutePath", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "StringQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "accessTime", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "DateQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "atime", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "DateQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "atimeMs", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "FloatQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "base", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "StringQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "birthTime", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "DateQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "birthtime", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "DateQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "birthtimeMs", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "FloatQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "blksize", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "IntQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "blocks", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "IntQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "changeTime", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "DateQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "childImageSharp", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ImageSharpFilterInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "NodeFilterListInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "childrenImageSharp", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ImageSharpFilterListInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ctime", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "DateQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ctimeMs", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "FloatQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "dev", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "IntQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "dir", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "StringQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ext", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "StringQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "extension", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "StringQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "gid", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "IntQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "StringQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ino", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "FloatQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "internal", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "InternalFilterInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "mode", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "IntQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "modifiedTime", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "DateQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "mtime", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "DateQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "mtimeMs", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "FloatQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "StringQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nlink", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "IntQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "NodeFilterInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "prettySize", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "StringQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "publicURL", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "StringQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "rdev", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "IntQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "relativeDirectory", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "StringQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "relativePath", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "StringQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "root", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "StringQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "size", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "IntQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sourceInstanceName", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "StringQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "uid", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "IntQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "File", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "imageSharp", + "description": null, + "args": [ + { + "name": "children", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "NodeFilterListInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "fixed", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ImageSharpFixedFilterInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "fluid", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ImageSharpFluidFilterInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "gatsbyImageData", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "JSONQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "StringQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "internal", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "InternalFilterInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "original", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ImageSharpOriginalFilterInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "NodeFilterInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "resize", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ImageSharpResizeFilterInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "ImageSharp", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "mdx", + "description": null, + "args": [ + { + "name": "body", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "StringQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "NodeFilterListInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "excerpt", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "StringQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "fileAbsolutePath", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "StringQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "frontmatter", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "MdxFrontmatterFilterInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "headings", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "MdxHeadingMdxFilterListInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "html", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "StringQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "StringQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "internal", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "InternalFilterInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "mdxAST", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "JSONQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "NodeFilterInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "rawBody", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "StringQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "slug", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "StringQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "tableOfContents", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "JSONQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "timeToRead", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "IntQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "wordCount", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "MdxWordCountFilterInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "Mdx", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "site", + "description": null, + "args": [ + { + "name": "buildTime", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "DateQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "NodeFilterListInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "StringQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "internal", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "InternalFilterInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "jsxRuntime", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "StringQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "NodeFilterInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pathPrefix", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "StringQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "polyfill", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "BooleanQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "siteMetadata", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SiteSiteMetadataFilterInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "trailingSlash", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "StringQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "Site", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "siteBuildMetadata", + "description": null, + "args": [ + { + "name": "buildTime", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "DateQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "NodeFilterListInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "StringQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "internal", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "InternalFilterInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "NodeFilterInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "SiteBuildMetadata", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "siteFunction", + "description": null, + "args": [ + { + "name": "absoluteCompiledFilePath", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "StringQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "NodeFilterListInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "functionRoute", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "StringQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "StringQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "internal", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "InternalFilterInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "matchPath", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "StringQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "originalAbsoluteFilePath", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "StringQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "originalRelativeFilePath", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "StringQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "NodeFilterInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pluginName", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "StringQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "relativeCompiledFilePath", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "StringQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "SiteFunction", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sitePage", + "description": null, + "args": [ + { + "name": "children", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "NodeFilterListInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "component", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "StringQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "componentChunkName", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "StringQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "StringQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "internal", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "InternalFilterInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "internalComponentName", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "StringQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "matchPath", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "StringQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pageContext", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "JSONQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "NodeFilterInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "path", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "StringQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "SitePage", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "Site", + "description": null, + "specifiedByUrl": null, + "fields": [ + { + "name": "buildTime", + "description": null, + "args": [ + { + "name": "difference", + "description": "Returns the difference between this date and the current time. Defaults to \"milliseconds\" but you can also pass in as the measurement \"years\", \"months\", \"weeks\", \"days\", \"hours\", \"minutes\", and \"seconds\".", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "formatString", + "description": "Format the date using Moment.js' date tokens, e.g. `date(formatString: \"YYYY MMMM DD\")`. See https://momentjs.com/docs/#/displaying/format/ for documentation for different tokens.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "fromNow", + "description": "Returns a string generated with Moment.js' `fromNow` function", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "locale", + "description": "Configures the locale Moment.js will use to format the date.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INTERFACE", + "name": "Node", + "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": false, + "deprecationReason": null + }, + { + "name": "internal", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Internal", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "jsxRuntime", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent", + "description": null, + "args": [], + "type": { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pathPrefix", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "polyfill", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "siteMetadata", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "SiteSiteMetadata", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "trailingSlash", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "SiteBuildMetadata", + "description": null, + "specifiedByUrl": null, + "fields": [ + { + "name": "buildTime", + "description": null, + "args": [ + { + "name": "difference", + "description": "Returns the difference between this date and the current time. Defaults to \"milliseconds\" but you can also pass in as the measurement \"years\", \"months\", \"weeks\", \"days\", \"hours\", \"minutes\", and \"seconds\".", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "formatString", + "description": "Format the date using Moment.js' date tokens, e.g. `date(formatString: \"YYYY MMMM DD\")`. See https://momentjs.com/docs/#/displaying/format/ for documentation for different tokens.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "fromNow", + "description": "Returns a string generated with Moment.js' `fromNow` function", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "locale", + "description": "Configures the locale Moment.js will use to format the date.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INTERFACE", + "name": "Node", + "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": false, + "deprecationReason": null + }, + { + "name": "internal", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Internal", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent", + "description": null, + "args": [], + "type": { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "SiteBuildMetadataConnection", + "description": null, + "specifiedByUrl": null, + "fields": [ + { + "name": "distinct", + "description": null, + "args": [ + { + "name": "field", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "SiteBuildMetadataFieldsEnum", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "edges", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SiteBuildMetadataEdge", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "group", + "description": null, + "args": [ + { + "name": "field", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "SiteBuildMetadataFieldsEnum", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "limit", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SiteBuildMetadataGroupConnection", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "max", + "description": null, + "args": [ + { + "name": "field", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "SiteBuildMetadataFieldsEnum", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "min", + "description": null, + "args": [ + { + "name": "field", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "SiteBuildMetadataFieldsEnum", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nodes", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SiteBuildMetadata", + "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": "sum", + "description": null, + "args": [ + { + "name": "field", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "SiteBuildMetadataFieldsEnum", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "totalCount", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "SiteBuildMetadataEdge", + "description": null, + "specifiedByUrl": null, + "fields": [ + { + "name": "next", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "SiteBuildMetadata", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "node", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SiteBuildMetadata", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "previous", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "SiteBuildMetadata", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "SiteBuildMetadataFieldsEnum", + "description": null, + "specifiedByUrl": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "buildTime", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___children", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___children___children", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___children___children___children", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___children___children___id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___children___id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___children___internal___content", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___children___internal___contentDigest", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___children___internal___description", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___children___internal___fieldOwners", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___children___internal___ignoreType", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___children___internal___mediaType", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___children___internal___owner", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___children___internal___type", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___children___parent___children", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___children___parent___id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___internal___content", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___internal___contentDigest", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___internal___description", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___internal___fieldOwners", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___internal___ignoreType", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___internal___mediaType", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___internal___owner", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___internal___type", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___parent___children", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___parent___children___children", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___parent___children___id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___parent___id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___parent___internal___content", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___parent___internal___contentDigest", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___parent___internal___description", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___parent___internal___fieldOwners", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___parent___internal___ignoreType", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___parent___internal___mediaType", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___parent___internal___owner", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___parent___internal___type", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___parent___parent___children", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___parent___parent___id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "internal___content", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "internal___contentDigest", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "internal___description", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "internal___fieldOwners", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "internal___ignoreType", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "internal___mediaType", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "internal___owner", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "internal___type", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___children", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___children___children", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___children___children___children", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___children___children___id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___children___id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___children___internal___content", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___children___internal___contentDigest", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___children___internal___description", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___children___internal___fieldOwners", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___children___internal___ignoreType", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___children___internal___mediaType", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___children___internal___owner", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___children___internal___type", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___children___parent___children", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___children___parent___id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___internal___content", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___internal___contentDigest", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___internal___description", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___internal___fieldOwners", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___internal___ignoreType", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___internal___mediaType", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___internal___owner", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___internal___type", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___parent___children", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___parent___children___children", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___parent___children___id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___parent___id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___parent___internal___content", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___parent___internal___contentDigest", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___parent___internal___description", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___parent___internal___fieldOwners", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___parent___internal___ignoreType", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___parent___internal___mediaType", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___parent___internal___owner", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___parent___internal___type", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___parent___parent___children", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___parent___parent___id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SiteBuildMetadataFilterInput", + "description": null, + "specifiedByUrl": null, + "fields": null, + "inputFields": [ + { + "name": "buildTime", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "DateQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "NodeFilterListInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "StringQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "internal", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "InternalFilterInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "NodeFilterInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "SiteBuildMetadataGroupConnection", + "description": null, + "specifiedByUrl": null, + "fields": [ + { + "name": "distinct", + "description": null, + "args": [ + { + "name": "field", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "SiteBuildMetadataFieldsEnum", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "edges", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SiteBuildMetadataEdge", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "field", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "fieldValue", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "group", + "description": null, + "args": [ + { + "name": "field", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "SiteBuildMetadataFieldsEnum", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "limit", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SiteBuildMetadataGroupConnection", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "max", + "description": null, + "args": [ + { + "name": "field", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "SiteBuildMetadataFieldsEnum", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "min", + "description": null, + "args": [ + { + "name": "field", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "SiteBuildMetadataFieldsEnum", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nodes", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SiteBuildMetadata", + "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": "sum", + "description": null, + "args": [ + { + "name": "field", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "SiteBuildMetadataFieldsEnum", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "totalCount", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SiteBuildMetadataSortInput", + "description": null, + "specifiedByUrl": null, + "fields": null, + "inputFields": [ + { + "name": "fields", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "SiteBuildMetadataFieldsEnum", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "order", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "SortOrderEnum", + "ofType": null + } + }, + "defaultValue": "[ASC]", + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "SiteConnection", + "description": null, + "specifiedByUrl": null, + "fields": [ + { + "name": "distinct", + "description": null, + "args": [ + { + "name": "field", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "SiteFieldsEnum", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "edges", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SiteEdge", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "group", + "description": null, + "args": [ + { + "name": "field", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "SiteFieldsEnum", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "limit", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SiteGroupConnection", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "max", + "description": null, + "args": [ + { + "name": "field", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "SiteFieldsEnum", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "min", + "description": null, + "args": [ + { + "name": "field", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "SiteFieldsEnum", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nodes", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Site", + "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": "sum", + "description": null, + "args": [ + { + "name": "field", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "SiteFieldsEnum", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "totalCount", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "SiteEdge", + "description": null, + "specifiedByUrl": null, + "fields": [ + { + "name": "next", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Site", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "node", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Site", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "previous", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Site", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "SiteFieldsEnum", + "description": null, + "specifiedByUrl": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "buildTime", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___children", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___children___children", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___children___children___children", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___children___children___id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___children___id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___children___internal___content", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___children___internal___contentDigest", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___children___internal___description", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___children___internal___fieldOwners", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___children___internal___ignoreType", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___children___internal___mediaType", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___children___internal___owner", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___children___internal___type", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___children___parent___children", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___children___parent___id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___internal___content", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___internal___contentDigest", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___internal___description", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___internal___fieldOwners", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___internal___ignoreType", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___internal___mediaType", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___internal___owner", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___internal___type", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___parent___children", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___parent___children___children", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___parent___children___id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___parent___id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___parent___internal___content", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___parent___internal___contentDigest", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___parent___internal___description", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___parent___internal___fieldOwners", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___parent___internal___ignoreType", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___parent___internal___mediaType", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___parent___internal___owner", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___parent___internal___type", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___parent___parent___children", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___parent___parent___id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "internal___content", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "internal___contentDigest", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "internal___description", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "internal___fieldOwners", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "internal___ignoreType", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "internal___mediaType", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "internal___owner", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "internal___type", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "jsxRuntime", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___children", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___children___children", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___children___children___children", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___children___children___id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___children___id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___children___internal___content", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___children___internal___contentDigest", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___children___internal___description", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___children___internal___fieldOwners", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___children___internal___ignoreType", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___children___internal___mediaType", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___children___internal___owner", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___children___internal___type", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___children___parent___children", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___children___parent___id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___internal___content", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___internal___contentDigest", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___internal___description", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___internal___fieldOwners", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___internal___ignoreType", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___internal___mediaType", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___internal___owner", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___internal___type", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___parent___children", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___parent___children___children", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___parent___children___id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___parent___id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___parent___internal___content", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___parent___internal___contentDigest", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___parent___internal___description", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___parent___internal___fieldOwners", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___parent___internal___ignoreType", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___parent___internal___mediaType", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___parent___internal___owner", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___parent___internal___type", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___parent___parent___children", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___parent___parent___id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pathPrefix", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "polyfill", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "siteMetadata___description", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "siteMetadata___title", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "trailingSlash", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SiteFilterInput", + "description": null, + "specifiedByUrl": null, + "fields": null, + "inputFields": [ + { + "name": "buildTime", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "DateQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "NodeFilterListInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "StringQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "internal", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "InternalFilterInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "jsxRuntime", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "StringQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "NodeFilterInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pathPrefix", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "StringQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "polyfill", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "BooleanQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "siteMetadata", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SiteSiteMetadataFilterInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "trailingSlash", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "StringQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "SiteFunction", + "description": null, + "specifiedByUrl": null, + "fields": [ + { + "name": "absoluteCompiledFilePath", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "functionRoute", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "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": false, + "deprecationReason": null + }, + { + "name": "internal", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Internal", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "matchPath", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "originalAbsoluteFilePath", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "originalRelativeFilePath", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent", + "description": null, + "args": [], + "type": { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pluginName", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "relativeCompiledFilePath", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "SiteFunctionConnection", + "description": null, + "specifiedByUrl": null, + "fields": [ + { + "name": "distinct", + "description": null, + "args": [ + { + "name": "field", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "SiteFunctionFieldsEnum", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "edges", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SiteFunctionEdge", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "group", + "description": null, + "args": [ + { + "name": "field", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "SiteFunctionFieldsEnum", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "limit", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SiteFunctionGroupConnection", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "max", + "description": null, + "args": [ + { + "name": "field", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "SiteFunctionFieldsEnum", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "min", + "description": null, + "args": [ + { + "name": "field", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "SiteFunctionFieldsEnum", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nodes", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SiteFunction", + "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": "sum", + "description": null, + "args": [ + { + "name": "field", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "SiteFunctionFieldsEnum", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "totalCount", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "SiteFunctionEdge", + "description": null, + "specifiedByUrl": null, + "fields": [ + { + "name": "next", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "SiteFunction", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "node", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SiteFunction", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "previous", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "SiteFunction", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "SiteFunctionFieldsEnum", + "description": null, + "specifiedByUrl": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "absoluteCompiledFilePath", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___children", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___children___children", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___children___children___children", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___children___children___id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___children___id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___children___internal___content", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___children___internal___contentDigest", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___children___internal___description", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___children___internal___fieldOwners", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___children___internal___ignoreType", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___children___internal___mediaType", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___children___internal___owner", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___children___internal___type", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___children___parent___children", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___children___parent___id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___internal___content", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___internal___contentDigest", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___internal___description", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___internal___fieldOwners", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___internal___ignoreType", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___internal___mediaType", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___internal___owner", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___internal___type", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___parent___children", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___parent___children___children", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___parent___children___id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___parent___id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___parent___internal___content", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___parent___internal___contentDigest", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___parent___internal___description", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___parent___internal___fieldOwners", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___parent___internal___ignoreType", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___parent___internal___mediaType", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___parent___internal___owner", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___parent___internal___type", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___parent___parent___children", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___parent___parent___id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "functionRoute", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "internal___content", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "internal___contentDigest", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "internal___description", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "internal___fieldOwners", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "internal___ignoreType", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "internal___mediaType", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "internal___owner", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "internal___type", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "matchPath", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "originalAbsoluteFilePath", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "originalRelativeFilePath", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___children", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___children___children", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___children___children___children", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___children___children___id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___children___id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___children___internal___content", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___children___internal___contentDigest", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___children___internal___description", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___children___internal___fieldOwners", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___children___internal___ignoreType", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___children___internal___mediaType", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___children___internal___owner", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___children___internal___type", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___children___parent___children", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___children___parent___id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___internal___content", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___internal___contentDigest", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___internal___description", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___internal___fieldOwners", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___internal___ignoreType", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___internal___mediaType", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___internal___owner", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___internal___type", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___parent___children", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___parent___children___children", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___parent___children___id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___parent___id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___parent___internal___content", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___parent___internal___contentDigest", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___parent___internal___description", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___parent___internal___fieldOwners", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___parent___internal___ignoreType", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___parent___internal___mediaType", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___parent___internal___owner", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___parent___internal___type", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___parent___parent___children", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___parent___parent___id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pluginName", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "relativeCompiledFilePath", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SiteFunctionFilterInput", + "description": null, + "specifiedByUrl": null, + "fields": null, + "inputFields": [ + { + "name": "absoluteCompiledFilePath", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "StringQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "NodeFilterListInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "functionRoute", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "StringQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "StringQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "internal", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "InternalFilterInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "matchPath", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "StringQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "originalAbsoluteFilePath", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "StringQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "originalRelativeFilePath", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "StringQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "NodeFilterInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pluginName", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "StringQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "relativeCompiledFilePath", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "StringQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "SiteFunctionGroupConnection", + "description": null, + "specifiedByUrl": null, + "fields": [ + { + "name": "distinct", + "description": null, + "args": [ + { + "name": "field", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "SiteFunctionFieldsEnum", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "edges", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SiteFunctionEdge", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "field", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "fieldValue", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "group", + "description": null, + "args": [ + { + "name": "field", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "SiteFunctionFieldsEnum", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "limit", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SiteFunctionGroupConnection", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "max", + "description": null, + "args": [ + { + "name": "field", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "SiteFunctionFieldsEnum", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "min", + "description": null, + "args": [ + { + "name": "field", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "SiteFunctionFieldsEnum", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nodes", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SiteFunction", + "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": "sum", + "description": null, + "args": [ + { + "name": "field", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "SiteFunctionFieldsEnum", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "totalCount", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SiteFunctionSortInput", + "description": null, + "specifiedByUrl": null, + "fields": null, + "inputFields": [ + { + "name": "fields", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "SiteFunctionFieldsEnum", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "order", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "SortOrderEnum", + "ofType": null + } + }, + "defaultValue": "[ASC]", + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "SiteGroupConnection", + "description": null, + "specifiedByUrl": null, + "fields": [ + { + "name": "distinct", + "description": null, + "args": [ + { + "name": "field", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "SiteFieldsEnum", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "edges", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SiteEdge", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "field", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "fieldValue", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "group", + "description": null, + "args": [ + { + "name": "field", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "SiteFieldsEnum", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "limit", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SiteGroupConnection", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "max", + "description": null, + "args": [ + { + "name": "field", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "SiteFieldsEnum", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "min", + "description": null, + "args": [ + { + "name": "field", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "SiteFieldsEnum", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nodes", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Site", + "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": "sum", + "description": null, + "args": [ + { + "name": "field", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "SiteFieldsEnum", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "totalCount", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "SitePage", + "description": null, + "specifiedByUrl": null, + "fields": [ + { + "name": "children", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "component", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "componentChunkName", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "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": false, + "deprecationReason": null + }, + { + "name": "internal", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Internal", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "internalComponentName", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "matchPath", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pageContext", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent", + "description": null, + "args": [], + "type": { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "path", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "SitePageConnection", + "description": null, + "specifiedByUrl": null, + "fields": [ + { + "name": "distinct", + "description": null, + "args": [ + { + "name": "field", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "SitePageFieldsEnum", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "edges", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SitePageEdge", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "group", + "description": null, + "args": [ + { + "name": "field", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "SitePageFieldsEnum", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "limit", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SitePageGroupConnection", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "max", + "description": null, + "args": [ + { + "name": "field", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "SitePageFieldsEnum", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "min", + "description": null, + "args": [ + { + "name": "field", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "SitePageFieldsEnum", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nodes", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SitePage", + "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": "sum", + "description": null, + "args": [ + { + "name": "field", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "SitePageFieldsEnum", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "totalCount", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "SitePageEdge", + "description": null, + "specifiedByUrl": null, + "fields": [ + { + "name": "next", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "SitePage", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "node", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SitePage", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "previous", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "SitePage", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "SitePageFieldsEnum", + "description": null, + "specifiedByUrl": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "children", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___children", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___children___children", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___children___children___children", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___children___children___id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___children___id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___children___internal___content", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___children___internal___contentDigest", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___children___internal___description", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___children___internal___fieldOwners", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___children___internal___ignoreType", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___children___internal___mediaType", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___children___internal___owner", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___children___internal___type", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___children___parent___children", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___children___parent___id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___internal___content", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___internal___contentDigest", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___internal___description", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___internal___fieldOwners", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___internal___ignoreType", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___internal___mediaType", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___internal___owner", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___internal___type", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___parent___children", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___parent___children___children", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___parent___children___id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___parent___id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___parent___internal___content", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___parent___internal___contentDigest", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___parent___internal___description", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___parent___internal___fieldOwners", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___parent___internal___ignoreType", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___parent___internal___mediaType", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___parent___internal___owner", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___parent___internal___type", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___parent___parent___children", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children___parent___parent___id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "component", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "componentChunkName", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "internalComponentName", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "internal___content", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "internal___contentDigest", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "internal___description", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "internal___fieldOwners", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "internal___ignoreType", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "internal___mediaType", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "internal___owner", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "internal___type", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "matchPath", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pageContext", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___children", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___children___children", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___children___children___children", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___children___children___id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___children___id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___children___internal___content", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___children___internal___contentDigest", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___children___internal___description", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___children___internal___fieldOwners", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___children___internal___ignoreType", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___children___internal___mediaType", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___children___internal___owner", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___children___internal___type", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___children___parent___children", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___children___parent___id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___internal___content", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___internal___contentDigest", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___internal___description", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___internal___fieldOwners", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___internal___ignoreType", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___internal___mediaType", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___internal___owner", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___internal___type", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___parent___children", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___parent___children___children", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___parent___children___id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___parent___id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___parent___internal___content", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___parent___internal___contentDigest", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___parent___internal___description", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___parent___internal___fieldOwners", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___parent___internal___ignoreType", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___parent___internal___mediaType", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___parent___internal___owner", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___parent___internal___type", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___parent___parent___children", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent___parent___parent___id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "path", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SitePageFilterInput", + "description": null, + "specifiedByUrl": null, + "fields": null, + "inputFields": [ + { + "name": "children", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "NodeFilterListInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "component", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "StringQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "componentChunkName", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "StringQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "StringQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "internal", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "InternalFilterInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "internalComponentName", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "StringQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "matchPath", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "StringQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pageContext", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "JSONQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "NodeFilterInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "path", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "StringQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "SitePageGroupConnection", + "description": null, + "specifiedByUrl": null, + "fields": [ + { + "name": "distinct", + "description": null, + "args": [ + { + "name": "field", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "SitePageFieldsEnum", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "edges", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SitePageEdge", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "field", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "fieldValue", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "group", + "description": null, + "args": [ + { + "name": "field", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "SitePageFieldsEnum", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "limit", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SitePageGroupConnection", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "max", + "description": null, + "args": [ + { + "name": "field", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "SitePageFieldsEnum", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "min", + "description": null, + "args": [ + { + "name": "field", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "SitePageFieldsEnum", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nodes", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SitePage", + "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": "sum", + "description": null, + "args": [ + { + "name": "field", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "SitePageFieldsEnum", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "totalCount", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SitePageSortInput", + "description": null, + "specifiedByUrl": null, + "fields": null, + "inputFields": [ + { + "name": "fields", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "SitePageFieldsEnum", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "order", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "SortOrderEnum", + "ofType": null + } + }, + "defaultValue": "[ASC]", + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "SiteSiteMetadata", + "description": null, + "specifiedByUrl": null, + "fields": [ + { + "name": "description", + "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 + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SiteSiteMetadataFilterInput", + "description": null, + "specifiedByUrl": null, + "fields": null, + "inputFields": [ + { + "name": "description", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "StringQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "title", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "StringQueryOperatorInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SiteSortInput", + "description": null, + "specifiedByUrl": null, + "fields": null, + "inputFields": [ + { + "name": "fields", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "SiteFieldsEnum", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "order", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "SortOrderEnum", + "ofType": null + } + }, + "defaultValue": "[ASC]", + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "SortOrderEnum", + "description": null, + "specifiedByUrl": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": 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.", + "specifiedByUrl": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "StringQueryOperatorInput", + "description": null, + "specifiedByUrl": null, + "fields": null, + "inputFields": [ + { + "name": "eq", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "glob", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ne", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nin", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "regex", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TransformOptions", + "description": null, + "specifiedByUrl": null, + "fields": null, + "inputFields": [ + { + "name": "cropFocus", + "description": null, + "type": { + "kind": "ENUM", + "name": "ImageCropFocus", + "ofType": null + }, + "defaultValue": "ATTENTION", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "duotone", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "DuotoneGradient", + "ofType": null + }, + "defaultValue": "{}", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "fit", + "description": null, + "type": { + "kind": "ENUM", + "name": "ImageFit", + "ofType": null + }, + "defaultValue": "COVER", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "grayscale", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": "false", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "rotate", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "0", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "trim", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": "0", + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "WebPOptions", + "description": null, + "specifiedByUrl": null, + "fields": null, + "inputFields": [ + { + "name": "quality", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "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.", + "specifiedByUrl": null, + "fields": [ + { + "name": "description", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "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, description and optional `specifiedByUrl`, 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.", + "specifiedByUrl": null, + "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": "specifiedByUrl", + "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", + "isDeprecated": false, + "deprecationReason": null + } + ], + "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", + "isDeprecated": false, + "deprecationReason": null + } + ], + "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": [ + { + "name": "includeDeprecated", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": "false", + "isDeprecated": false, + "deprecationReason": null + } + ], + "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.", + "specifiedByUrl": null, + "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`, `interfaces`, 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.", + "specifiedByUrl": null, + "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": [ + { + "name": "includeDeprecated", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": "false", + "isDeprecated": false, + "deprecationReason": null + } + ], + "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.", + "specifiedByUrl": null, + "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 + }, + { + "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": "__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.", + "specifiedByUrl": null, + "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.", + "specifiedByUrl": null, + "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": "isRepeatable", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "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": [ + { + "name": "includeDeprecated", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": "false", + "isDeprecated": false, + "deprecationReason": null + } + ], + "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.", + "specifiedByUrl": null, + "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": "childOf", + "description": "Define parent-child relations between types. This is used to add `child*` and `children*` convenience fields like `childImageSharp`.", + "isRepeatable": false, + "locations": [ + "OBJECT" + ], + "args": [ + { + "name": "mimeTypes", + "description": "A list of mime-types this type is a child of. Usually these are the mime-types handled by a transformer plugin.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + }, + "defaultValue": "[]", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "types", + "description": "A list of types this type is a child of. Usually these are the types handled by a transformer plugin.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + }, + "defaultValue": "[]", + "isDeprecated": false, + "deprecationReason": null + } + ] + }, + { + "name": "dateformat", + "description": "Add date formatting options.", + "isRepeatable": false, + "locations": [ + "FIELD_DEFINITION" + ], + "args": [ + { + "name": "difference", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "formatString", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "fromNow", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "locale", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ] + }, + { + "name": "deprecated", + "description": "Marks an element of a GraphQL schema as no longer supported.", + "isRepeatable": false, + "locations": [ + "ARGUMENT_DEFINITION", + "ENUM_VALUE", + "FIELD_DEFINITION", + "INPUT_FIELD_DEFINITION" + ], + "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\"", + "isDeprecated": false, + "deprecationReason": null + } + ] + }, + { + "name": "dontInfer", + "description": "Do not infer field types from field values.", + "isRepeatable": false, + "locations": [ + "OBJECT" + ], + "args": [] + }, + { + "name": "fileByRelativePath", + "description": "Link to File node by relative path.", + "isRepeatable": false, + "locations": [ + "FIELD_DEFINITION" + ], + "args": [ + { + "name": "from", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ] + }, + { + "name": "include", + "description": "Directs the executor to include this field or fragment only when the `if` argument is true.", + "isRepeatable": false, + "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, + "isDeprecated": false, + "deprecationReason": null + } + ] + }, + { + "name": "infer", + "description": "Infer field types from field values.", + "isRepeatable": false, + "locations": [ + "OBJECT" + ], + "args": [] + }, + { + "name": "link", + "description": "Link to node by foreign-key relation.", + "isRepeatable": false, + "locations": [ + "FIELD_DEFINITION" + ], + "args": [ + { + "name": "by", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": "\"id\"", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "from", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "on", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ] + }, + { + "name": "mimeTypes", + "description": "Define the mime-types handled by this type.", + "isRepeatable": false, + "locations": [ + "OBJECT" + ], + "args": [ + { + "name": "types", + "description": "The mime-types handled by this type.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + }, + "defaultValue": "[]", + "isDeprecated": false, + "deprecationReason": null + } + ] + }, + { + "name": "nodeInterface", + "description": "DEPRECATED: Use interface inheritance instead, i.e. \"interface Foo implements Node\".\n\nAdds root query fields for an interface. All implementing types must also implement the Node interface.", + "isRepeatable": false, + "locations": [ + "INTERFACE" + ], + "args": [] + }, + { + "name": "proxy", + "description": "Proxy resolver from another field.", + "isRepeatable": false, + "locations": [ + "FIELD_DEFINITION" + ], + "args": [ + { + "name": "from", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "fromNode", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "defaultValue": "false", + "isDeprecated": false, + "deprecationReason": null + } + ] + }, + { + "name": "skip", + "description": "Directs the executor to skip this field or fragment when the `if` argument is true.", + "isRepeatable": false, + "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, + "isDeprecated": false, + "deprecationReason": null + } + ] + } + ] + } +} \ No newline at end of file diff --git a/examples/mdx/src/__generated__/gatsby-plugin-documents.graphql b/examples/mdx/src/__generated__/gatsby-plugin-documents.graphql new file mode 100644 index 0000000..1830275 --- /dev/null +++ b/examples/mdx/src/__generated__/gatsby-plugin-documents.graphql @@ -0,0 +1,108 @@ +fragment GatsbyImageSharpFixed on ImageSharpFixed { + base64 + width + height + src + srcSet +} + +fragment GatsbyImageSharpFixed_tracedSVG on ImageSharpFixed { + tracedSVG + width + height + src + srcSet +} + +fragment GatsbyImageSharpFixed_withWebp on ImageSharpFixed { + base64 + width + height + src + srcSet + srcWebp + srcSetWebp +} + +fragment GatsbyImageSharpFixed_withWebp_tracedSVG on ImageSharpFixed { + tracedSVG + width + height + src + srcSet + srcWebp + srcSetWebp +} + +fragment GatsbyImageSharpFixed_noBase64 on ImageSharpFixed { + width + height + src + srcSet +} + +fragment GatsbyImageSharpFixed_withWebp_noBase64 on ImageSharpFixed { + width + height + src + srcSet + srcWebp + srcSetWebp +} + +fragment GatsbyImageSharpFluid on ImageSharpFluid { + base64 + aspectRatio + src + srcSet + sizes +} + +fragment GatsbyImageSharpFluidLimitPresentationSize on ImageSharpFluid { + maxHeight: presentationHeight + maxWidth: presentationWidth +} + +fragment GatsbyImageSharpFluid_tracedSVG on ImageSharpFluid { + tracedSVG + aspectRatio + src + srcSet + sizes +} + +fragment GatsbyImageSharpFluid_withWebp on ImageSharpFluid { + base64 + aspectRatio + src + srcSet + srcWebp + srcSetWebp + sizes +} + +fragment GatsbyImageSharpFluid_withWebp_tracedSVG on ImageSharpFluid { + tracedSVG + aspectRatio + src + srcSet + srcWebp + srcSetWebp + sizes +} + +fragment GatsbyImageSharpFluid_noBase64 on ImageSharpFluid { + aspectRatio + src + srcSet + sizes +} + +fragment GatsbyImageSharpFluid_withWebp_noBase64 on ImageSharpFluid { + aspectRatio + src + srcSet + srcWebp + srcSetWebp + sizes +} \ No newline at end of file diff --git a/examples/mdx/src/__generated__/gatsby-schema.graphql b/examples/mdx/src/__generated__/gatsby-schema.graphql new file mode 100644 index 0000000..df8abac --- /dev/null +++ b/examples/mdx/src/__generated__/gatsby-schema.graphql @@ -0,0 +1,2349 @@ +# Define parent-child relations between types. This is used to add `child*` and `children*` convenience fields like `childImageSharp`. +directive @childOf( + # A list of mime-types this type is a child of. Usually these are the mime-types handled by a transformer plugin. + mimeTypes: [String!]! = [] + + # A list of types this type is a child of. Usually these are the types handled by a transformer plugin. + types: [String!]! = [] +) on OBJECT + +# Add date formatting options. +directive @dateformat(difference: String, formatString: String, fromNow: Boolean, locale: String) on FIELD_DEFINITION + +# Do not infer field types from field values. +directive @dontInfer on OBJECT + +# Link to File node by relative path. +directive @fileByRelativePath(from: String) on FIELD_DEFINITION + +# Infer field types from field values. +directive @infer on OBJECT + +# Link to node by foreign-key relation. +directive @link(by: String! = "id", from: String, on: String) on FIELD_DEFINITION + +# Define the mime-types handled by this type. +directive @mimeTypes( + # The mime-types handled by this type. + types: [String!]! = [] +) on OBJECT + +# DEPRECATED: Use interface inheritance instead, i.e. "interface Foo implements Node". +# +# Adds root query fields for an interface. All implementing types must also implement the Node interface. +directive @nodeInterface on INTERFACE + +# Proxy resolver from another field. +directive @proxy(from: String!, fromNode: Boolean! = false) on FIELD_DEFINITION + +input AVIFOptions { + lossless: Boolean + quality: Int + speed: Int +} + +input BlurredOptions { + # Force the output format for the low-res preview. Default is to use the same format as the input. You should rarely need to change this + toFormat: ImageFormat + + # Width of the generated low-res preview. Default is 20px + width: Int +} + +input BooleanQueryOperatorInput { + eq: Boolean + in: [Boolean] + ne: Boolean + nin: [Boolean] +} + +# A date string, such as 2007-12-03, compliant with the ISO 8601 standard for representation of dates and times using the Gregorian calendar. +scalar Date + +input DateQueryOperatorInput { + eq: Date + gt: Date + gte: Date + in: [Date] + lt: Date + lte: Date + ne: Date + nin: [Date] +} + +type Directory implements Node { + absolutePath: String! + accessTime( + # Returns the difference between this date and the current time. Defaults to "milliseconds" but you can also pass in as the measurement "years", "months", "weeks", "days", "hours", "minutes", and "seconds". + difference: String + + # Format the date using Moment.js' date tokens, e.g. `date(formatString: "YYYY MMMM DD")`. See https://momentjs.com/docs/#/displaying/format/ for documentation for different tokens. + formatString: String + + # Returns a string generated with Moment.js' `fromNow` function + fromNow: Boolean + + # Configures the locale Moment.js will use to format the date. + locale: String + ): Date! + atime( + # Returns the difference between this date and the current time. Defaults to "milliseconds" but you can also pass in as the measurement "years", "months", "weeks", "days", "hours", "minutes", and "seconds". + difference: String + + # Format the date using Moment.js' date tokens, e.g. `date(formatString: "YYYY MMMM DD")`. See https://momentjs.com/docs/#/displaying/format/ for documentation for different tokens. + formatString: String + + # Returns a string generated with Moment.js' `fromNow` function + fromNow: Boolean + + # Configures the locale Moment.js will use to format the date. + locale: String + ): Date! + atimeMs: Float! + base: String! + birthTime( + # Returns the difference between this date and the current time. Defaults to "milliseconds" but you can also pass in as the measurement "years", "months", "weeks", "days", "hours", "minutes", and "seconds". + difference: String + + # Format the date using Moment.js' date tokens, e.g. `date(formatString: "YYYY MMMM DD")`. See https://momentjs.com/docs/#/displaying/format/ for documentation for different tokens. + formatString: String + + # Returns a string generated with Moment.js' `fromNow` function + fromNow: Boolean + + # Configures the locale Moment.js will use to format the date. + locale: String + ): Date! + birthtime: Date @deprecated(reason: "Use `birthTime` instead") + birthtimeMs: Float @deprecated(reason: "Use `birthTime` instead") + changeTime( + # Returns the difference between this date and the current time. Defaults to "milliseconds" but you can also pass in as the measurement "years", "months", "weeks", "days", "hours", "minutes", and "seconds". + difference: String + + # Format the date using Moment.js' date tokens, e.g. `date(formatString: "YYYY MMMM DD")`. See https://momentjs.com/docs/#/displaying/format/ for documentation for different tokens. + formatString: String + + # Returns a string generated with Moment.js' `fromNow` function + fromNow: Boolean + + # Configures the locale Moment.js will use to format the date. + locale: String + ): Date! + children: [Node!]! + ctime( + # Returns the difference between this date and the current time. Defaults to "milliseconds" but you can also pass in as the measurement "years", "months", "weeks", "days", "hours", "minutes", and "seconds". + difference: String + + # Format the date using Moment.js' date tokens, e.g. `date(formatString: "YYYY MMMM DD")`. See https://momentjs.com/docs/#/displaying/format/ for documentation for different tokens. + formatString: String + + # Returns a string generated with Moment.js' `fromNow` function + fromNow: Boolean + + # Configures the locale Moment.js will use to format the date. + locale: String + ): Date! + ctimeMs: Float! + dev: Int! + dir: String! + ext: String! + extension: String! + gid: Int! + id: ID! + ino: Float! + internal: Internal! + mode: Int! + modifiedTime( + # Returns the difference between this date and the current time. Defaults to "milliseconds" but you can also pass in as the measurement "years", "months", "weeks", "days", "hours", "minutes", and "seconds". + difference: String + + # Format the date using Moment.js' date tokens, e.g. `date(formatString: "YYYY MMMM DD")`. See https://momentjs.com/docs/#/displaying/format/ for documentation for different tokens. + formatString: String + + # Returns a string generated with Moment.js' `fromNow` function + fromNow: Boolean + + # Configures the locale Moment.js will use to format the date. + locale: String + ): Date! + mtime( + # Returns the difference between this date and the current time. Defaults to "milliseconds" but you can also pass in as the measurement "years", "months", "weeks", "days", "hours", "minutes", and "seconds". + difference: String + + # Format the date using Moment.js' date tokens, e.g. `date(formatString: "YYYY MMMM DD")`. See https://momentjs.com/docs/#/displaying/format/ for documentation for different tokens. + formatString: String + + # Returns a string generated with Moment.js' `fromNow` function + fromNow: Boolean + + # Configures the locale Moment.js will use to format the date. + locale: String + ): Date! + mtimeMs: Float! + name: String! + nlink: Int! + parent: Node + prettySize: String! + rdev: Int! + relativeDirectory: String! + relativePath: String! + root: String! + size: Int! + sourceInstanceName: String! + uid: Int! +} + +type DirectoryConnection { + distinct(field: DirectoryFieldsEnum!): [String!]! + edges: [DirectoryEdge!]! + group(field: DirectoryFieldsEnum!, limit: Int, skip: Int): [DirectoryGroupConnection!]! + max(field: DirectoryFieldsEnum!): Float + min(field: DirectoryFieldsEnum!): Float + nodes: [Directory!]! + pageInfo: PageInfo! + sum(field: DirectoryFieldsEnum!): Float + totalCount: Int! +} + +type DirectoryEdge { + next: Directory + node: Directory! + previous: Directory +} + +enum DirectoryFieldsEnum { + absolutePath + accessTime + atime + atimeMs + base + birthTime + birthtime + birthtimeMs + changeTime + children + children___children + children___children___children + children___children___children___children + children___children___children___id + children___children___id + children___children___internal___content + children___children___internal___contentDigest + children___children___internal___description + children___children___internal___fieldOwners + children___children___internal___ignoreType + children___children___internal___mediaType + children___children___internal___owner + children___children___internal___type + children___children___parent___children + children___children___parent___id + children___id + children___internal___content + children___internal___contentDigest + children___internal___description + children___internal___fieldOwners + children___internal___ignoreType + children___internal___mediaType + children___internal___owner + children___internal___type + children___parent___children + children___parent___children___children + children___parent___children___id + children___parent___id + children___parent___internal___content + children___parent___internal___contentDigest + children___parent___internal___description + children___parent___internal___fieldOwners + children___parent___internal___ignoreType + children___parent___internal___mediaType + children___parent___internal___owner + children___parent___internal___type + children___parent___parent___children + children___parent___parent___id + ctime + ctimeMs + dev + dir + ext + extension + gid + id + ino + internal___content + internal___contentDigest + internal___description + internal___fieldOwners + internal___ignoreType + internal___mediaType + internal___owner + internal___type + mode + modifiedTime + mtime + mtimeMs + name + nlink + parent___children + parent___children___children + parent___children___children___children + parent___children___children___id + parent___children___id + parent___children___internal___content + parent___children___internal___contentDigest + parent___children___internal___description + parent___children___internal___fieldOwners + parent___children___internal___ignoreType + parent___children___internal___mediaType + parent___children___internal___owner + parent___children___internal___type + parent___children___parent___children + parent___children___parent___id + parent___id + parent___internal___content + parent___internal___contentDigest + parent___internal___description + parent___internal___fieldOwners + parent___internal___ignoreType + parent___internal___mediaType + parent___internal___owner + parent___internal___type + parent___parent___children + parent___parent___children___children + parent___parent___children___id + parent___parent___id + parent___parent___internal___content + parent___parent___internal___contentDigest + parent___parent___internal___description + parent___parent___internal___fieldOwners + parent___parent___internal___ignoreType + parent___parent___internal___mediaType + parent___parent___internal___owner + parent___parent___internal___type + parent___parent___parent___children + parent___parent___parent___id + prettySize + rdev + relativeDirectory + relativePath + root + size + sourceInstanceName + uid +} + +input DirectoryFilterInput { + absolutePath: StringQueryOperatorInput + accessTime: DateQueryOperatorInput + atime: DateQueryOperatorInput + atimeMs: FloatQueryOperatorInput + base: StringQueryOperatorInput + birthTime: DateQueryOperatorInput + birthtime: DateQueryOperatorInput + birthtimeMs: FloatQueryOperatorInput + changeTime: DateQueryOperatorInput + children: NodeFilterListInput + ctime: DateQueryOperatorInput + ctimeMs: FloatQueryOperatorInput + dev: IntQueryOperatorInput + dir: StringQueryOperatorInput + ext: StringQueryOperatorInput + extension: StringQueryOperatorInput + gid: IntQueryOperatorInput + id: StringQueryOperatorInput + ino: FloatQueryOperatorInput + internal: InternalFilterInput + mode: IntQueryOperatorInput + modifiedTime: DateQueryOperatorInput + mtime: DateQueryOperatorInput + mtimeMs: FloatQueryOperatorInput + name: StringQueryOperatorInput + nlink: IntQueryOperatorInput + parent: NodeFilterInput + prettySize: StringQueryOperatorInput + rdev: IntQueryOperatorInput + relativeDirectory: StringQueryOperatorInput + relativePath: StringQueryOperatorInput + root: StringQueryOperatorInput + size: IntQueryOperatorInput + sourceInstanceName: StringQueryOperatorInput + uid: IntQueryOperatorInput +} + +type DirectoryGroupConnection { + distinct(field: DirectoryFieldsEnum!): [String!]! + edges: [DirectoryEdge!]! + field: String! + fieldValue: String + group(field: DirectoryFieldsEnum!, limit: Int, skip: Int): [DirectoryGroupConnection!]! + max(field: DirectoryFieldsEnum!): Float + min(field: DirectoryFieldsEnum!): Float + nodes: [Directory!]! + pageInfo: PageInfo! + sum(field: DirectoryFieldsEnum!): Float + totalCount: Int! +} + +input DirectorySortInput { + fields: [DirectoryFieldsEnum] + order: [SortOrderEnum] = [ASC] +} + +input DuotoneGradient { + highlight: String! + opacity: Int + shadow: String! +} + +type File implements Node { + absolutePath: String! + accessTime( + # Returns the difference between this date and the current time. Defaults to "milliseconds" but you can also pass in as the measurement "years", "months", "weeks", "days", "hours", "minutes", and "seconds". + difference: String + + # Format the date using Moment.js' date tokens, e.g. `date(formatString: "YYYY MMMM DD")`. See https://momentjs.com/docs/#/displaying/format/ for documentation for different tokens. + formatString: String + + # Returns a string generated with Moment.js' `fromNow` function + fromNow: Boolean + + # Configures the locale Moment.js will use to format the date. + locale: String + ): Date! + atime( + # Returns the difference between this date and the current time. Defaults to "milliseconds" but you can also pass in as the measurement "years", "months", "weeks", "days", "hours", "minutes", and "seconds". + difference: String + + # Format the date using Moment.js' date tokens, e.g. `date(formatString: "YYYY MMMM DD")`. See https://momentjs.com/docs/#/displaying/format/ for documentation for different tokens. + formatString: String + + # Returns a string generated with Moment.js' `fromNow` function + fromNow: Boolean + + # Configures the locale Moment.js will use to format the date. + locale: String + ): Date! + atimeMs: Float! + base: String! + birthTime( + # Returns the difference between this date and the current time. Defaults to "milliseconds" but you can also pass in as the measurement "years", "months", "weeks", "days", "hours", "minutes", and "seconds". + difference: String + + # Format the date using Moment.js' date tokens, e.g. `date(formatString: "YYYY MMMM DD")`. See https://momentjs.com/docs/#/displaying/format/ for documentation for different tokens. + formatString: String + + # Returns a string generated with Moment.js' `fromNow` function + fromNow: Boolean + + # Configures the locale Moment.js will use to format the date. + locale: String + ): Date! + birthtime: Date @deprecated(reason: "Use `birthTime` instead") + birthtimeMs: Float @deprecated(reason: "Use `birthTime` instead") + blksize: Int + blocks: Int + changeTime( + # Returns the difference between this date and the current time. Defaults to "milliseconds" but you can also pass in as the measurement "years", "months", "weeks", "days", "hours", "minutes", and "seconds". + difference: String + + # Format the date using Moment.js' date tokens, e.g. `date(formatString: "YYYY MMMM DD")`. See https://momentjs.com/docs/#/displaying/format/ for documentation for different tokens. + formatString: String + + # Returns a string generated with Moment.js' `fromNow` function + fromNow: Boolean + + # Configures the locale Moment.js will use to format the date. + locale: String + ): Date! + + # Returns the first child node of type ImageSharp or null if there are no children of given type on this node + childImageSharp: ImageSharp + children: [Node!]! + + # Returns all children nodes filtered by type ImageSharp + childrenImageSharp: [ImageSharp] + ctime( + # Returns the difference between this date and the current time. Defaults to "milliseconds" but you can also pass in as the measurement "years", "months", "weeks", "days", "hours", "minutes", and "seconds". + difference: String + + # Format the date using Moment.js' date tokens, e.g. `date(formatString: "YYYY MMMM DD")`. See https://momentjs.com/docs/#/displaying/format/ for documentation for different tokens. + formatString: String + + # Returns a string generated with Moment.js' `fromNow` function + fromNow: Boolean + + # Configures the locale Moment.js will use to format the date. + locale: String + ): Date! + ctimeMs: Float! + dev: Int! + dir: String! + ext: String! + extension: String! + gid: Int! + id: ID! + ino: Float! + internal: Internal! + mode: Int! + modifiedTime( + # Returns the difference between this date and the current time. Defaults to "milliseconds" but you can also pass in as the measurement "years", "months", "weeks", "days", "hours", "minutes", and "seconds". + difference: String + + # Format the date using Moment.js' date tokens, e.g. `date(formatString: "YYYY MMMM DD")`. See https://momentjs.com/docs/#/displaying/format/ for documentation for different tokens. + formatString: String + + # Returns a string generated with Moment.js' `fromNow` function + fromNow: Boolean + + # Configures the locale Moment.js will use to format the date. + locale: String + ): Date! + mtime( + # Returns the difference between this date and the current time. Defaults to "milliseconds" but you can also pass in as the measurement "years", "months", "weeks", "days", "hours", "minutes", and "seconds". + difference: String + + # Format the date using Moment.js' date tokens, e.g. `date(formatString: "YYYY MMMM DD")`. See https://momentjs.com/docs/#/displaying/format/ for documentation for different tokens. + formatString: String + + # Returns a string generated with Moment.js' `fromNow` function + fromNow: Boolean + + # Configures the locale Moment.js will use to format the date. + locale: String + ): Date! + mtimeMs: Float! + name: String! + nlink: Int! + parent: Node + prettySize: String! + + # Copy file to static directory and return public url to it + publicURL: String + rdev: Int! + relativeDirectory: String! + relativePath: String! + root: String! + size: Int! + sourceInstanceName: String! + uid: Int! +} + +type FileConnection { + distinct(field: FileFieldsEnum!): [String!]! + edges: [FileEdge!]! + group(field: FileFieldsEnum!, limit: Int, skip: Int): [FileGroupConnection!]! + max(field: FileFieldsEnum!): Float + min(field: FileFieldsEnum!): Float + nodes: [File!]! + pageInfo: PageInfo! + sum(field: FileFieldsEnum!): Float + totalCount: Int! +} + +type FileEdge { + next: File + node: File! + previous: File +} + +enum FileFieldsEnum { + absolutePath + accessTime + atime + atimeMs + base + birthTime + birthtime + birthtimeMs + blksize + blocks + changeTime + childImageSharp___children + childImageSharp___children___children + childImageSharp___children___children___children + childImageSharp___children___children___id + childImageSharp___children___id + childImageSharp___children___internal___content + childImageSharp___children___internal___contentDigest + childImageSharp___children___internal___description + childImageSharp___children___internal___fieldOwners + childImageSharp___children___internal___ignoreType + childImageSharp___children___internal___mediaType + childImageSharp___children___internal___owner + childImageSharp___children___internal___type + childImageSharp___children___parent___children + childImageSharp___children___parent___id + childImageSharp___fixed___aspectRatio @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") + childImageSharp___fixed___base64 @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") + childImageSharp___fixed___height @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") + childImageSharp___fixed___originalName @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") + childImageSharp___fixed___src @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") + childImageSharp___fixed___srcSet @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") + childImageSharp___fixed___srcSetWebp @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") + childImageSharp___fixed___srcWebp @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") + childImageSharp___fixed___tracedSVG @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") + childImageSharp___fixed___width @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") + childImageSharp___fluid___aspectRatio @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") + childImageSharp___fluid___base64 @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") + childImageSharp___fluid___originalImg @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") + childImageSharp___fluid___originalName @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") + childImageSharp___fluid___presentationHeight @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") + childImageSharp___fluid___presentationWidth @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") + childImageSharp___fluid___sizes @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") + childImageSharp___fluid___src @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") + childImageSharp___fluid___srcSet @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") + childImageSharp___fluid___srcSetWebp @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") + childImageSharp___fluid___srcWebp @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") + childImageSharp___fluid___tracedSVG @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") + childImageSharp___gatsbyImageData @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") + childImageSharp___id + childImageSharp___internal___content + childImageSharp___internal___contentDigest + childImageSharp___internal___description + childImageSharp___internal___fieldOwners + childImageSharp___internal___ignoreType + childImageSharp___internal___mediaType + childImageSharp___internal___owner + childImageSharp___internal___type + childImageSharp___original___height + childImageSharp___original___src + childImageSharp___original___width + childImageSharp___parent___children + childImageSharp___parent___children___children + childImageSharp___parent___children___id + childImageSharp___parent___id + childImageSharp___parent___internal___content + childImageSharp___parent___internal___contentDigest + childImageSharp___parent___internal___description + childImageSharp___parent___internal___fieldOwners + childImageSharp___parent___internal___ignoreType + childImageSharp___parent___internal___mediaType + childImageSharp___parent___internal___owner + childImageSharp___parent___internal___type + childImageSharp___parent___parent___children + childImageSharp___parent___parent___id + childImageSharp___resize___aspectRatio @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") + childImageSharp___resize___height @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") + childImageSharp___resize___originalName @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") + childImageSharp___resize___src @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") + childImageSharp___resize___tracedSVG @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") + childImageSharp___resize___width @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") + children + childrenImageSharp + childrenImageSharp___children + childrenImageSharp___children___children + childrenImageSharp___children___children___children + childrenImageSharp___children___children___id + childrenImageSharp___children___id + childrenImageSharp___children___internal___content + childrenImageSharp___children___internal___contentDigest + childrenImageSharp___children___internal___description + childrenImageSharp___children___internal___fieldOwners + childrenImageSharp___children___internal___ignoreType + childrenImageSharp___children___internal___mediaType + childrenImageSharp___children___internal___owner + childrenImageSharp___children___internal___type + childrenImageSharp___children___parent___children + childrenImageSharp___children___parent___id + childrenImageSharp___fixed___aspectRatio @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") + childrenImageSharp___fixed___base64 @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") + childrenImageSharp___fixed___height @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") + childrenImageSharp___fixed___originalName @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") + childrenImageSharp___fixed___src @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") + childrenImageSharp___fixed___srcSet @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") + childrenImageSharp___fixed___srcSetWebp @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") + childrenImageSharp___fixed___srcWebp @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") + childrenImageSharp___fixed___tracedSVG @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") + childrenImageSharp___fixed___width @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") + childrenImageSharp___fluid___aspectRatio @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") + childrenImageSharp___fluid___base64 @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") + childrenImageSharp___fluid___originalImg @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") + childrenImageSharp___fluid___originalName @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") + childrenImageSharp___fluid___presentationHeight @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") + childrenImageSharp___fluid___presentationWidth @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") + childrenImageSharp___fluid___sizes @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") + childrenImageSharp___fluid___src @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") + childrenImageSharp___fluid___srcSet @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") + childrenImageSharp___fluid___srcSetWebp @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") + childrenImageSharp___fluid___srcWebp @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") + childrenImageSharp___fluid___tracedSVG @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") + childrenImageSharp___gatsbyImageData @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") + childrenImageSharp___id + childrenImageSharp___internal___content + childrenImageSharp___internal___contentDigest + childrenImageSharp___internal___description + childrenImageSharp___internal___fieldOwners + childrenImageSharp___internal___ignoreType + childrenImageSharp___internal___mediaType + childrenImageSharp___internal___owner + childrenImageSharp___internal___type + childrenImageSharp___original___height + childrenImageSharp___original___src + childrenImageSharp___original___width + childrenImageSharp___parent___children + childrenImageSharp___parent___children___children + childrenImageSharp___parent___children___id + childrenImageSharp___parent___id + childrenImageSharp___parent___internal___content + childrenImageSharp___parent___internal___contentDigest + childrenImageSharp___parent___internal___description + childrenImageSharp___parent___internal___fieldOwners + childrenImageSharp___parent___internal___ignoreType + childrenImageSharp___parent___internal___mediaType + childrenImageSharp___parent___internal___owner + childrenImageSharp___parent___internal___type + childrenImageSharp___parent___parent___children + childrenImageSharp___parent___parent___id + childrenImageSharp___resize___aspectRatio @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") + childrenImageSharp___resize___height @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") + childrenImageSharp___resize___originalName @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") + childrenImageSharp___resize___src @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") + childrenImageSharp___resize___tracedSVG @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") + childrenImageSharp___resize___width @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") + children___children + children___children___children + children___children___children___children + children___children___children___id + children___children___id + children___children___internal___content + children___children___internal___contentDigest + children___children___internal___description + children___children___internal___fieldOwners + children___children___internal___ignoreType + children___children___internal___mediaType + children___children___internal___owner + children___children___internal___type + children___children___parent___children + children___children___parent___id + children___id + children___internal___content + children___internal___contentDigest + children___internal___description + children___internal___fieldOwners + children___internal___ignoreType + children___internal___mediaType + children___internal___owner + children___internal___type + children___parent___children + children___parent___children___children + children___parent___children___id + children___parent___id + children___parent___internal___content + children___parent___internal___contentDigest + children___parent___internal___description + children___parent___internal___fieldOwners + children___parent___internal___ignoreType + children___parent___internal___mediaType + children___parent___internal___owner + children___parent___internal___type + children___parent___parent___children + children___parent___parent___id + ctime + ctimeMs + dev + dir + ext + extension + gid + id + ino + internal___content + internal___contentDigest + internal___description + internal___fieldOwners + internal___ignoreType + internal___mediaType + internal___owner + internal___type + mode + modifiedTime + mtime + mtimeMs + name + nlink + parent___children + parent___children___children + parent___children___children___children + parent___children___children___id + parent___children___id + parent___children___internal___content + parent___children___internal___contentDigest + parent___children___internal___description + parent___children___internal___fieldOwners + parent___children___internal___ignoreType + parent___children___internal___mediaType + parent___children___internal___owner + parent___children___internal___type + parent___children___parent___children + parent___children___parent___id + parent___id + parent___internal___content + parent___internal___contentDigest + parent___internal___description + parent___internal___fieldOwners + parent___internal___ignoreType + parent___internal___mediaType + parent___internal___owner + parent___internal___type + parent___parent___children + parent___parent___children___children + parent___parent___children___id + parent___parent___id + parent___parent___internal___content + parent___parent___internal___contentDigest + parent___parent___internal___description + parent___parent___internal___fieldOwners + parent___parent___internal___ignoreType + parent___parent___internal___mediaType + parent___parent___internal___owner + parent___parent___internal___type + parent___parent___parent___children + parent___parent___parent___id + prettySize + publicURL + rdev + relativeDirectory + relativePath + root + size + sourceInstanceName + uid +} + +input FileFilterInput { + absolutePath: StringQueryOperatorInput + accessTime: DateQueryOperatorInput + atime: DateQueryOperatorInput + atimeMs: FloatQueryOperatorInput + base: StringQueryOperatorInput + birthTime: DateQueryOperatorInput + birthtime: DateQueryOperatorInput + birthtimeMs: FloatQueryOperatorInput + blksize: IntQueryOperatorInput + blocks: IntQueryOperatorInput + changeTime: DateQueryOperatorInput + childImageSharp: ImageSharpFilterInput + children: NodeFilterListInput + childrenImageSharp: ImageSharpFilterListInput + ctime: DateQueryOperatorInput + ctimeMs: FloatQueryOperatorInput + dev: IntQueryOperatorInput + dir: StringQueryOperatorInput + ext: StringQueryOperatorInput + extension: StringQueryOperatorInput + gid: IntQueryOperatorInput + id: StringQueryOperatorInput + ino: FloatQueryOperatorInput + internal: InternalFilterInput + mode: IntQueryOperatorInput + modifiedTime: DateQueryOperatorInput + mtime: DateQueryOperatorInput + mtimeMs: FloatQueryOperatorInput + name: StringQueryOperatorInput + nlink: IntQueryOperatorInput + parent: NodeFilterInput + prettySize: StringQueryOperatorInput + publicURL: StringQueryOperatorInput + rdev: IntQueryOperatorInput + relativeDirectory: StringQueryOperatorInput + relativePath: StringQueryOperatorInput + root: StringQueryOperatorInput + size: IntQueryOperatorInput + sourceInstanceName: StringQueryOperatorInput + uid: IntQueryOperatorInput +} + +type FileGroupConnection { + distinct(field: FileFieldsEnum!): [String!]! + edges: [FileEdge!]! + field: String! + fieldValue: String + group(field: FileFieldsEnum!, limit: Int, skip: Int): [FileGroupConnection!]! + max(field: FileFieldsEnum!): Float + min(field: FileFieldsEnum!): Float + nodes: [File!]! + pageInfo: PageInfo! + sum(field: FileFieldsEnum!): Float + totalCount: Int! +} + +input FileSortInput { + fields: [FileFieldsEnum] + order: [SortOrderEnum] = [ASC] +} + +input FloatQueryOperatorInput { + eq: Float + gt: Float + gte: Float + in: [Float] + lt: Float + lte: Float + ne: Float + nin: [Float] +} + +enum GatsbyImageFormat { + AUTO + AVIF + JPG + NO_CHANGE + PNG + WEBP +} + +enum GatsbyImageLayout { + CONSTRAINED + FIXED + FULL_WIDTH +} + +enum GatsbyImagePlaceholder { + BLURRED + DOMINANT_COLOR + NONE + TRACED_SVG +} + +enum HeadingsMdx { + h1 + h2 + h3 + h4 + h5 + h6 +} + +enum ImageCropFocus { + ATTENTION + CENTER + EAST + ENTROPY + NORTH + NORTHEAST + NORTHWEST + SOUTH + SOUTHEAST + SOUTHWEST + WEST +} + +enum ImageFit { + CONTAIN + COVER + FILL + INSIDE + OUTSIDE +} + +enum ImageFormat { + AUTO + AVIF + JPG + NO_CHANGE + PNG + WEBP +} + +enum ImageLayout { + CONSTRAINED + FIXED + FULL_WIDTH +} + +enum ImagePlaceholder { + BLURRED + DOMINANT_COLOR + NONE + TRACED_SVG +} + +type ImageSharp implements Node { + children: [Node!]! + fixed(background: String = "rgba(0,0,0,1)", base64Width: Int, cropFocus: ImageCropFocus = ATTENTION, duotone: DuotoneGradient = {}, fit: ImageFit = COVER, grayscale: Boolean = false, height: Int, jpegProgressive: Boolean = true, jpegQuality: Int, pngCompressionSpeed: Int = 4, pngQuality: Int, quality: Int, rotate: Int = 0, toFormat: ImageFormat = NO_CHANGE, toFormatBase64: ImageFormat = NO_CHANGE, traceSVG: Potrace = {}, trim: Float = 0, webpQuality: Int, width: Int): ImageSharpFixed + fluid( + background: String = "rgba(0,0,0,1)" + base64Width: Int + cropFocus: ImageCropFocus = ATTENTION + duotone: DuotoneGradient = {} + fit: ImageFit = COVER + grayscale: Boolean = false + jpegProgressive: Boolean = true + jpegQuality: Int + maxHeight: Int + maxWidth: Int + pngCompressionSpeed: Int = 4 + pngQuality: Int + quality: Int + rotate: Int = 0 + sizes: String = "" + + # A list of image widths to be generated. Example: [ 200, 340, 520, 890 ] + srcSetBreakpoints: [Int] = [] + toFormat: ImageFormat = NO_CHANGE + toFormatBase64: ImageFormat = NO_CHANGE + traceSVG: Potrace = {} + trim: Float = 0 + webpQuality: Int + ): ImageSharpFluid + gatsbyImageData( + # If set along with width or height, this will set the value of the other dimension to match the provided aspect ratio, cropping the image if needed. + # If neither width or height is provided, height will be set based on the intrinsic width of the source image. + aspectRatio: Float + + # Options to pass to sharp when generating AVIF images. + avifOptions: AVIFOptions + + # Background color applied to the wrapper. Also passed to sharp to use as a background when "letterboxing" an image to another aspect ratio. + backgroundColor: String + + # Options for the low-resolution placeholder image. Set placeholder to "BLURRED" to use this + blurredOptions: BlurredOptions + + # Specifies the image widths to generate. For FIXED and CONSTRAINED images it is better to allow these to be determined automatically, + # based on the image size. For FULL_WIDTH images this can be used to override the default, which is [750, 1080, 1366, 1920]. + # It will never generate any images larger than the source. + breakpoints: [Int] + + # The image formats to generate. Valid values are "AUTO" (meaning the same format as the source image), "JPG", "PNG", "WEBP" and "AVIF". + # The default value is [AUTO, WEBP], and you should rarely need to change this. Take care if you specify JPG or PNG when you do + # not know the formats of the source images, as this could lead to unwanted results such as converting JPEGs to PNGs. Specifying + # both PNG and JPG is not supported and will be ignored. + formats: [ImageFormat] + + # The display height of the generated image for layout = FIXED, and the maximum display height of the largest image for layout = CONSTRAINED. + # The image will be cropped if the aspect ratio does not match the source image. If omitted, it is calculated from the supplied width, + # matching the aspect ratio of the source image. + height: Int + + # Options to pass to sharp when generating JPG images. + jpgOptions: JPGOptions + + # The layout for the image. + # FIXED: A static image sized, that does not resize according to the screen width + # FULL_WIDTH: The image resizes to fit its container. Pass a "sizes" option if it isn't going to be the full width of the screen. + # CONSTRAINED: Resizes to fit its container, up to a maximum width, at which point it will remain fixed in size. + layout: ImageLayout = CONSTRAINED + + # A list of image pixel densities to generate. It will never generate images larger than the source, and will always include a 1x image. + # Default is [ 1, 2 ] for FIXED images, meaning 1x and 2x and [0.25, 0.5, 1, 2] for CONSTRAINED. In this case, an image with a constrained layout + # and width = 400 would generate images at 100, 200, 400 and 800px wide. Ignored for FULL_WIDTH images, which use breakpoints instead + outputPixelDensities: [Float] + + # Format of generated placeholder image, displayed while the main image loads. + # BLURRED: a blurred, low resolution image, encoded as a base64 data URI (default) + # DOMINANT_COLOR: a solid color, calculated from the dominant color of the image. + # TRACED_SVG: a low-resolution traced SVG of the image. + # NONE: no placeholder. Set "background" to use a fixed background color. + placeholder: ImagePlaceholder + + # Options to pass to sharp when generating PNG images. + pngOptions: PNGOptions + + # The default quality. This is overridden by any format-specific options + quality: Int + + # The "sizes" property, passed to the img tag. This describes the display size of the image. + # This does not affect the generated images, but is used by the browser to decide which images to download. + # You should usually leave this blank, and a suitable value will be calculated. The exception is if a FULL_WIDTH image + # does not actually span the full width of the screen, in which case you should pass the correct size here. + sizes: String + + # Options for traced placeholder SVGs. You also should set placeholder to "TRACED_SVG". + tracedSVGOptions: Potrace + + # Options to pass to sharp to control cropping and other image manipulations. + transformOptions: TransformOptions + + # Options to pass to sharp when generating WebP images. + webpOptions: WebPOptions + + # The display width of the generated image for layout = FIXED, and the maximum display width of the largest image for layout = CONSTRAINED. + # Ignored if layout = FLUID. + width: Int + ): JSON! + id: ID! + internal: Internal! + original: ImageSharpOriginal + parent: Node + resize(background: String = "rgba(0,0,0,1)", base64: Boolean = false, cropFocus: ImageCropFocus = ATTENTION, duotone: DuotoneGradient = {}, fit: ImageFit = COVER, grayscale: Boolean = false, height: Int, jpegProgressive: Boolean = true, jpegQuality: Int, pngCompressionLevel: Int = 9, pngCompressionSpeed: Int = 4, pngQuality: Int, quality: Int, rotate: Int = 0, toFormat: ImageFormat = NO_CHANGE, traceSVG: Potrace = {}, trim: Float = 0, webpQuality: Int, width: Int): ImageSharpResize +} + +type ImageSharpConnection { + distinct(field: ImageSharpFieldsEnum!): [String!]! + edges: [ImageSharpEdge!]! + group(field: ImageSharpFieldsEnum!, limit: Int, skip: Int): [ImageSharpGroupConnection!]! + max(field: ImageSharpFieldsEnum!): Float + min(field: ImageSharpFieldsEnum!): Float + nodes: [ImageSharp!]! + pageInfo: PageInfo! + sum(field: ImageSharpFieldsEnum!): Float + totalCount: Int! +} + +type ImageSharpEdge { + next: ImageSharp + node: ImageSharp! + previous: ImageSharp +} + +enum ImageSharpFieldsEnum { + children + children___children + children___children___children + children___children___children___children + children___children___children___id + children___children___id + children___children___internal___content + children___children___internal___contentDigest + children___children___internal___description + children___children___internal___fieldOwners + children___children___internal___ignoreType + children___children___internal___mediaType + children___children___internal___owner + children___children___internal___type + children___children___parent___children + children___children___parent___id + children___id + children___internal___content + children___internal___contentDigest + children___internal___description + children___internal___fieldOwners + children___internal___ignoreType + children___internal___mediaType + children___internal___owner + children___internal___type + children___parent___children + children___parent___children___children + children___parent___children___id + children___parent___id + children___parent___internal___content + children___parent___internal___contentDigest + children___parent___internal___description + children___parent___internal___fieldOwners + children___parent___internal___ignoreType + children___parent___internal___mediaType + children___parent___internal___owner + children___parent___internal___type + children___parent___parent___children + children___parent___parent___id + fixed___aspectRatio @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") + fixed___base64 @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") + fixed___height @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") + fixed___originalName @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") + fixed___src @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") + fixed___srcSet @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") + fixed___srcSetWebp @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") + fixed___srcWebp @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") + fixed___tracedSVG @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") + fixed___width @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") + fluid___aspectRatio @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") + fluid___base64 @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") + fluid___originalImg @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") + fluid___originalName @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") + fluid___presentationHeight @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") + fluid___presentationWidth @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") + fluid___sizes @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") + fluid___src @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") + fluid___srcSet @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") + fluid___srcSetWebp @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") + fluid___srcWebp @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") + fluid___tracedSVG @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") + gatsbyImageData @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") + id + internal___content + internal___contentDigest + internal___description + internal___fieldOwners + internal___ignoreType + internal___mediaType + internal___owner + internal___type + original___height + original___src + original___width + parent___children + parent___children___children + parent___children___children___children + parent___children___children___id + parent___children___id + parent___children___internal___content + parent___children___internal___contentDigest + parent___children___internal___description + parent___children___internal___fieldOwners + parent___children___internal___ignoreType + parent___children___internal___mediaType + parent___children___internal___owner + parent___children___internal___type + parent___children___parent___children + parent___children___parent___id + parent___id + parent___internal___content + parent___internal___contentDigest + parent___internal___description + parent___internal___fieldOwners + parent___internal___ignoreType + parent___internal___mediaType + parent___internal___owner + parent___internal___type + parent___parent___children + parent___parent___children___children + parent___parent___children___id + parent___parent___id + parent___parent___internal___content + parent___parent___internal___contentDigest + parent___parent___internal___description + parent___parent___internal___fieldOwners + parent___parent___internal___ignoreType + parent___parent___internal___mediaType + parent___parent___internal___owner + parent___parent___internal___type + parent___parent___parent___children + parent___parent___parent___id + resize___aspectRatio @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") + resize___height @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") + resize___originalName @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") + resize___src @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") + resize___tracedSVG @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") + resize___width @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") +} + +input ImageSharpFilterInput { + children: NodeFilterListInput + fixed: ImageSharpFixedFilterInput + fluid: ImageSharpFluidFilterInput + gatsbyImageData: JSONQueryOperatorInput + id: StringQueryOperatorInput + internal: InternalFilterInput + original: ImageSharpOriginalFilterInput + parent: NodeFilterInput + resize: ImageSharpResizeFilterInput +} + +input ImageSharpFilterListInput { + elemMatch: ImageSharpFilterInput +} + +type ImageSharpFixed { + aspectRatio: Float + base64: String + height: Float! + originalName: String + src: String! + srcSet: String! + srcSetWebp: String + srcWebp: String + tracedSVG: String + width: Float! +} + +input ImageSharpFixedFilterInput { + aspectRatio: FloatQueryOperatorInput + base64: StringQueryOperatorInput + height: FloatQueryOperatorInput + originalName: StringQueryOperatorInput + src: StringQueryOperatorInput + srcSet: StringQueryOperatorInput + srcSetWebp: StringQueryOperatorInput + srcWebp: StringQueryOperatorInput + tracedSVG: StringQueryOperatorInput + width: FloatQueryOperatorInput +} + +type ImageSharpFluid { + aspectRatio: Float! + base64: String + originalImg: String + originalName: String + presentationHeight: Int! + presentationWidth: Int! + sizes: String! + src: String! + srcSet: String! + srcSetWebp: String + srcWebp: String + tracedSVG: String +} + +input ImageSharpFluidFilterInput { + aspectRatio: FloatQueryOperatorInput + base64: StringQueryOperatorInput + originalImg: StringQueryOperatorInput + originalName: StringQueryOperatorInput + presentationHeight: IntQueryOperatorInput + presentationWidth: IntQueryOperatorInput + sizes: StringQueryOperatorInput + src: StringQueryOperatorInput + srcSet: StringQueryOperatorInput + srcSetWebp: StringQueryOperatorInput + srcWebp: StringQueryOperatorInput + tracedSVG: StringQueryOperatorInput +} + +type ImageSharpGroupConnection { + distinct(field: ImageSharpFieldsEnum!): [String!]! + edges: [ImageSharpEdge!]! + field: String! + fieldValue: String + group(field: ImageSharpFieldsEnum!, limit: Int, skip: Int): [ImageSharpGroupConnection!]! + max(field: ImageSharpFieldsEnum!): Float + min(field: ImageSharpFieldsEnum!): Float + nodes: [ImageSharp!]! + pageInfo: PageInfo! + sum(field: ImageSharpFieldsEnum!): Float + totalCount: Int! +} + +type ImageSharpOriginal { + height: Float + src: String + width: Float +} + +input ImageSharpOriginalFilterInput { + height: FloatQueryOperatorInput + src: StringQueryOperatorInput + width: FloatQueryOperatorInput +} + +type ImageSharpResize { + aspectRatio: Float + height: Int + originalName: String + src: String + tracedSVG: String + width: Int +} + +input ImageSharpResizeFilterInput { + aspectRatio: FloatQueryOperatorInput + height: IntQueryOperatorInput + originalName: StringQueryOperatorInput + src: StringQueryOperatorInput + tracedSVG: StringQueryOperatorInput + width: IntQueryOperatorInput +} + +input ImageSharpSortInput { + fields: [ImageSharpFieldsEnum] + order: [SortOrderEnum] = [ASC] +} + +input IntQueryOperatorInput { + eq: Int + gt: Int + gte: Int + in: [Int] + lt: Int + lte: Int + ne: Int + nin: [Int] +} + +type Internal { + content: String + contentDigest: String! + description: String + fieldOwners: [String] + ignoreType: Boolean + mediaType: String + owner: String! + type: String! +} + +input InternalFilterInput { + content: StringQueryOperatorInput + contentDigest: StringQueryOperatorInput + description: StringQueryOperatorInput + fieldOwners: StringQueryOperatorInput + ignoreType: BooleanQueryOperatorInput + mediaType: StringQueryOperatorInput + owner: StringQueryOperatorInput + type: StringQueryOperatorInput +} + +input JPGOptions { + progressive: Boolean = true + quality: Int +} + +# The `JSON` scalar type represents JSON values as specified by [ECMA-404](http://www.ecma-international.org/publications/files/ECMA-ST/ECMA-404.pdf). +scalar JSON @specifiedBy(url: "http://www.ecma-international.org/publications/files/ECMA-ST/ECMA-404.pdf") + +input JSONQueryOperatorInput { + eq: JSON + glob: JSON + in: [JSON] + ne: JSON + nin: [JSON] + regex: JSON +} + +type Mdx implements Node { + body: String! + children: [Node!]! + excerpt(pruneLength: Int = 140, truncate: Boolean = false): String! + fileAbsolutePath: String! + frontmatter: MdxFrontmatter + headings(depth: HeadingsMdx): [MdxHeadingMdx] + html: String + id: ID! + internal: Internal! + mdxAST: JSON + parent: Node + rawBody: String! + slug: String + tableOfContents(maxDepth: Int): JSON + timeToRead: Int + wordCount: MdxWordCount +} + +type MdxConnection { + distinct(field: MdxFieldsEnum!): [String!]! + edges: [MdxEdge!]! + group(field: MdxFieldsEnum!, limit: Int, skip: Int): [MdxGroupConnection!]! + max(field: MdxFieldsEnum!): Float + min(field: MdxFieldsEnum!): Float + nodes: [Mdx!]! + pageInfo: PageInfo! + sum(field: MdxFieldsEnum!): Float + totalCount: Int! +} + +type MdxEdge { + next: Mdx + node: Mdx! + previous: Mdx +} + +enum MdxFieldsEnum { + body + children + children___children + children___children___children + children___children___children___children + children___children___children___id + children___children___id + children___children___internal___content + children___children___internal___contentDigest + children___children___internal___description + children___children___internal___fieldOwners + children___children___internal___ignoreType + children___children___internal___mediaType + children___children___internal___owner + children___children___internal___type + children___children___parent___children + children___children___parent___id + children___id + children___internal___content + children___internal___contentDigest + children___internal___description + children___internal___fieldOwners + children___internal___ignoreType + children___internal___mediaType + children___internal___owner + children___internal___type + children___parent___children + children___parent___children___children + children___parent___children___id + children___parent___id + children___parent___internal___content + children___parent___internal___contentDigest + children___parent___internal___description + children___parent___internal___fieldOwners + children___parent___internal___ignoreType + children___parent___internal___mediaType + children___parent___internal___owner + children___parent___internal___type + children___parent___parent___children + children___parent___parent___id + excerpt @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") + fileAbsolutePath + frontmatter___title + headings @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") + headings___depth @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") + headings___value @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") + html + id + internal___content + internal___contentDigest + internal___description + internal___fieldOwners + internal___ignoreType + internal___mediaType + internal___owner + internal___type + mdxAST + parent___children + parent___children___children + parent___children___children___children + parent___children___children___id + parent___children___id + parent___children___internal___content + parent___children___internal___contentDigest + parent___children___internal___description + parent___children___internal___fieldOwners + parent___children___internal___ignoreType + parent___children___internal___mediaType + parent___children___internal___owner + parent___children___internal___type + parent___children___parent___children + parent___children___parent___id + parent___id + parent___internal___content + parent___internal___contentDigest + parent___internal___description + parent___internal___fieldOwners + parent___internal___ignoreType + parent___internal___mediaType + parent___internal___owner + parent___internal___type + parent___parent___children + parent___parent___children___children + parent___parent___children___id + parent___parent___id + parent___parent___internal___content + parent___parent___internal___contentDigest + parent___parent___internal___description + parent___parent___internal___fieldOwners + parent___parent___internal___ignoreType + parent___parent___internal___mediaType + parent___parent___internal___owner + parent___parent___internal___type + parent___parent___parent___children + parent___parent___parent___id + rawBody + slug + tableOfContents @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") + timeToRead + wordCount___paragraphs + wordCount___sentences + wordCount___words +} + +input MdxFilterInput { + body: StringQueryOperatorInput + children: NodeFilterListInput + excerpt: StringQueryOperatorInput + fileAbsolutePath: StringQueryOperatorInput + frontmatter: MdxFrontmatterFilterInput + headings: MdxHeadingMdxFilterListInput + html: StringQueryOperatorInput + id: StringQueryOperatorInput + internal: InternalFilterInput + mdxAST: JSONQueryOperatorInput + parent: NodeFilterInput + rawBody: StringQueryOperatorInput + slug: StringQueryOperatorInput + tableOfContents: JSONQueryOperatorInput + timeToRead: IntQueryOperatorInput + wordCount: MdxWordCountFilterInput +} + +type MdxFrontmatter { + title: String! +} + +input MdxFrontmatterFilterInput { + title: StringQueryOperatorInput +} + +type MdxGroupConnection { + distinct(field: MdxFieldsEnum!): [String!]! + edges: [MdxEdge!]! + field: String! + fieldValue: String + group(field: MdxFieldsEnum!, limit: Int, skip: Int): [MdxGroupConnection!]! + max(field: MdxFieldsEnum!): Float + min(field: MdxFieldsEnum!): Float + nodes: [Mdx!]! + pageInfo: PageInfo! + sum(field: MdxFieldsEnum!): Float + totalCount: Int! +} + +type MdxHeadingMdx { + depth: Int + value: String +} + +input MdxHeadingMdxFilterInput { + depth: IntQueryOperatorInput + value: StringQueryOperatorInput +} + +input MdxHeadingMdxFilterListInput { + elemMatch: MdxHeadingMdxFilterInput +} + +input MdxSortInput { + fields: [MdxFieldsEnum] + order: [SortOrderEnum] = [ASC] +} + +type MdxWordCount { + paragraphs: Int + sentences: Int + words: Int +} + +input MdxWordCountFilterInput { + paragraphs: IntQueryOperatorInput + sentences: IntQueryOperatorInput + words: IntQueryOperatorInput +} + +# Node Interface +interface Node { + children: [Node!]! + id: ID! + internal: Internal! + parent: Node +} + +input NodeFilterInput { + children: NodeFilterListInput + id: StringQueryOperatorInput + internal: InternalFilterInput + parent: NodeFilterInput +} + +input NodeFilterListInput { + elemMatch: NodeFilterInput +} + +input PNGOptions { + compressionSpeed: Int = 4 + quality: Int +} + +type PageInfo { + currentPage: Int! + hasNextPage: Boolean! + hasPreviousPage: Boolean! + itemCount: Int! + pageCount: Int! + perPage: Int + totalCount: Int! +} + +input Potrace { + alphaMax: Float + background: String + blackOnWhite: Boolean + color: String + optCurve: Boolean + optTolerance: Float + threshold: Int + turdSize: Float + turnPolicy: PotraceTurnPolicy +} + +enum PotraceTurnPolicy { + TURNPOLICY_BLACK + TURNPOLICY_LEFT + TURNPOLICY_MAJORITY + TURNPOLICY_MINORITY + TURNPOLICY_RIGHT + TURNPOLICY_WHITE +} + +type Query { + allDirectory(filter: DirectoryFilterInput, limit: Int, skip: Int, sort: DirectorySortInput): DirectoryConnection! + allFile(filter: FileFilterInput, limit: Int, skip: Int, sort: FileSortInput): FileConnection! + allImageSharp(filter: ImageSharpFilterInput, limit: Int, skip: Int, sort: ImageSharpSortInput): ImageSharpConnection! + allMdx(filter: MdxFilterInput, limit: Int, skip: Int, sort: MdxSortInput): MdxConnection! + allSite(filter: SiteFilterInput, limit: Int, skip: Int, sort: SiteSortInput): SiteConnection! + allSiteBuildMetadata(filter: SiteBuildMetadataFilterInput, limit: Int, skip: Int, sort: SiteBuildMetadataSortInput): SiteBuildMetadataConnection! + allSiteFunction(filter: SiteFunctionFilterInput, limit: Int, skip: Int, sort: SiteFunctionSortInput): SiteFunctionConnection! + allSitePage(filter: SitePageFilterInput, limit: Int, skip: Int, sort: SitePageSortInput): SitePageConnection! + directory(absolutePath: StringQueryOperatorInput, accessTime: DateQueryOperatorInput, atime: DateQueryOperatorInput, atimeMs: FloatQueryOperatorInput, base: StringQueryOperatorInput, birthTime: DateQueryOperatorInput, birthtime: DateQueryOperatorInput, birthtimeMs: FloatQueryOperatorInput, changeTime: DateQueryOperatorInput, children: NodeFilterListInput, ctime: DateQueryOperatorInput, ctimeMs: FloatQueryOperatorInput, dev: IntQueryOperatorInput, dir: StringQueryOperatorInput, ext: StringQueryOperatorInput, extension: StringQueryOperatorInput, gid: IntQueryOperatorInput, id: StringQueryOperatorInput, ino: FloatQueryOperatorInput, internal: InternalFilterInput, mode: IntQueryOperatorInput, modifiedTime: DateQueryOperatorInput, mtime: DateQueryOperatorInput, mtimeMs: FloatQueryOperatorInput, name: StringQueryOperatorInput, nlink: IntQueryOperatorInput, parent: NodeFilterInput, prettySize: StringQueryOperatorInput, rdev: IntQueryOperatorInput, relativeDirectory: StringQueryOperatorInput, relativePath: StringQueryOperatorInput, root: StringQueryOperatorInput, size: IntQueryOperatorInput, sourceInstanceName: StringQueryOperatorInput, uid: IntQueryOperatorInput): Directory + file(absolutePath: StringQueryOperatorInput, accessTime: DateQueryOperatorInput, atime: DateQueryOperatorInput, atimeMs: FloatQueryOperatorInput, base: StringQueryOperatorInput, birthTime: DateQueryOperatorInput, birthtime: DateQueryOperatorInput, birthtimeMs: FloatQueryOperatorInput, blksize: IntQueryOperatorInput, blocks: IntQueryOperatorInput, changeTime: DateQueryOperatorInput, childImageSharp: ImageSharpFilterInput, children: NodeFilterListInput, childrenImageSharp: ImageSharpFilterListInput, ctime: DateQueryOperatorInput, ctimeMs: FloatQueryOperatorInput, dev: IntQueryOperatorInput, dir: StringQueryOperatorInput, ext: StringQueryOperatorInput, extension: StringQueryOperatorInput, gid: IntQueryOperatorInput, id: StringQueryOperatorInput, ino: FloatQueryOperatorInput, internal: InternalFilterInput, mode: IntQueryOperatorInput, modifiedTime: DateQueryOperatorInput, mtime: DateQueryOperatorInput, mtimeMs: FloatQueryOperatorInput, name: StringQueryOperatorInput, nlink: IntQueryOperatorInput, parent: NodeFilterInput, prettySize: StringQueryOperatorInput, publicURL: StringQueryOperatorInput, rdev: IntQueryOperatorInput, relativeDirectory: StringQueryOperatorInput, relativePath: StringQueryOperatorInput, root: StringQueryOperatorInput, size: IntQueryOperatorInput, sourceInstanceName: StringQueryOperatorInput, uid: IntQueryOperatorInput): File + imageSharp(children: NodeFilterListInput, fixed: ImageSharpFixedFilterInput, fluid: ImageSharpFluidFilterInput, gatsbyImageData: JSONQueryOperatorInput, id: StringQueryOperatorInput, internal: InternalFilterInput, original: ImageSharpOriginalFilterInput, parent: NodeFilterInput, resize: ImageSharpResizeFilterInput): ImageSharp + mdx(body: StringQueryOperatorInput, children: NodeFilterListInput, excerpt: StringQueryOperatorInput, fileAbsolutePath: StringQueryOperatorInput, frontmatter: MdxFrontmatterFilterInput, headings: MdxHeadingMdxFilterListInput, html: StringQueryOperatorInput, id: StringQueryOperatorInput, internal: InternalFilterInput, mdxAST: JSONQueryOperatorInput, parent: NodeFilterInput, rawBody: StringQueryOperatorInput, slug: StringQueryOperatorInput, tableOfContents: JSONQueryOperatorInput, timeToRead: IntQueryOperatorInput, wordCount: MdxWordCountFilterInput): Mdx + site(buildTime: DateQueryOperatorInput, children: NodeFilterListInput, id: StringQueryOperatorInput, internal: InternalFilterInput, jsxRuntime: StringQueryOperatorInput, parent: NodeFilterInput, pathPrefix: StringQueryOperatorInput, polyfill: BooleanQueryOperatorInput, siteMetadata: SiteSiteMetadataFilterInput, trailingSlash: StringQueryOperatorInput): Site + siteBuildMetadata(buildTime: DateQueryOperatorInput, children: NodeFilterListInput, id: StringQueryOperatorInput, internal: InternalFilterInput, parent: NodeFilterInput): SiteBuildMetadata + siteFunction(absoluteCompiledFilePath: StringQueryOperatorInput, children: NodeFilterListInput, functionRoute: StringQueryOperatorInput, id: StringQueryOperatorInput, internal: InternalFilterInput, matchPath: StringQueryOperatorInput, originalAbsoluteFilePath: StringQueryOperatorInput, originalRelativeFilePath: StringQueryOperatorInput, parent: NodeFilterInput, pluginName: StringQueryOperatorInput, relativeCompiledFilePath: StringQueryOperatorInput): SiteFunction + sitePage(children: NodeFilterListInput, component: StringQueryOperatorInput, componentChunkName: StringQueryOperatorInput, id: StringQueryOperatorInput, internal: InternalFilterInput, internalComponentName: StringQueryOperatorInput, matchPath: StringQueryOperatorInput, pageContext: JSONQueryOperatorInput, parent: NodeFilterInput, path: StringQueryOperatorInput): SitePage +} + +type Site implements Node { + buildTime( + # Returns the difference between this date and the current time. Defaults to "milliseconds" but you can also pass in as the measurement "years", "months", "weeks", "days", "hours", "minutes", and "seconds". + difference: String + + # Format the date using Moment.js' date tokens, e.g. `date(formatString: "YYYY MMMM DD")`. See https://momentjs.com/docs/#/displaying/format/ for documentation for different tokens. + formatString: String + + # Returns a string generated with Moment.js' `fromNow` function + fromNow: Boolean + + # Configures the locale Moment.js will use to format the date. + locale: String + ): Date + children: [Node!]! + id: ID! + internal: Internal! + jsxRuntime: String + parent: Node + pathPrefix: String + polyfill: Boolean + siteMetadata: SiteSiteMetadata + trailingSlash: String +} + +type SiteBuildMetadata implements Node { + buildTime( + # Returns the difference between this date and the current time. Defaults to "milliseconds" but you can also pass in as the measurement "years", "months", "weeks", "days", "hours", "minutes", and "seconds". + difference: String + + # Format the date using Moment.js' date tokens, e.g. `date(formatString: "YYYY MMMM DD")`. See https://momentjs.com/docs/#/displaying/format/ for documentation for different tokens. + formatString: String + + # Returns a string generated with Moment.js' `fromNow` function + fromNow: Boolean + + # Configures the locale Moment.js will use to format the date. + locale: String + ): Date + children: [Node!]! + id: ID! + internal: Internal! + parent: Node +} + +type SiteBuildMetadataConnection { + distinct(field: SiteBuildMetadataFieldsEnum!): [String!]! + edges: [SiteBuildMetadataEdge!]! + group(field: SiteBuildMetadataFieldsEnum!, limit: Int, skip: Int): [SiteBuildMetadataGroupConnection!]! + max(field: SiteBuildMetadataFieldsEnum!): Float + min(field: SiteBuildMetadataFieldsEnum!): Float + nodes: [SiteBuildMetadata!]! + pageInfo: PageInfo! + sum(field: SiteBuildMetadataFieldsEnum!): Float + totalCount: Int! +} + +type SiteBuildMetadataEdge { + next: SiteBuildMetadata + node: SiteBuildMetadata! + previous: SiteBuildMetadata +} + +enum SiteBuildMetadataFieldsEnum { + buildTime + children + children___children + children___children___children + children___children___children___children + children___children___children___id + children___children___id + children___children___internal___content + children___children___internal___contentDigest + children___children___internal___description + children___children___internal___fieldOwners + children___children___internal___ignoreType + children___children___internal___mediaType + children___children___internal___owner + children___children___internal___type + children___children___parent___children + children___children___parent___id + children___id + children___internal___content + children___internal___contentDigest + children___internal___description + children___internal___fieldOwners + children___internal___ignoreType + children___internal___mediaType + children___internal___owner + children___internal___type + children___parent___children + children___parent___children___children + children___parent___children___id + children___parent___id + children___parent___internal___content + children___parent___internal___contentDigest + children___parent___internal___description + children___parent___internal___fieldOwners + children___parent___internal___ignoreType + children___parent___internal___mediaType + children___parent___internal___owner + children___parent___internal___type + children___parent___parent___children + children___parent___parent___id + id + internal___content + internal___contentDigest + internal___description + internal___fieldOwners + internal___ignoreType + internal___mediaType + internal___owner + internal___type + parent___children + parent___children___children + parent___children___children___children + parent___children___children___id + parent___children___id + parent___children___internal___content + parent___children___internal___contentDigest + parent___children___internal___description + parent___children___internal___fieldOwners + parent___children___internal___ignoreType + parent___children___internal___mediaType + parent___children___internal___owner + parent___children___internal___type + parent___children___parent___children + parent___children___parent___id + parent___id + parent___internal___content + parent___internal___contentDigest + parent___internal___description + parent___internal___fieldOwners + parent___internal___ignoreType + parent___internal___mediaType + parent___internal___owner + parent___internal___type + parent___parent___children + parent___parent___children___children + parent___parent___children___id + parent___parent___id + parent___parent___internal___content + parent___parent___internal___contentDigest + parent___parent___internal___description + parent___parent___internal___fieldOwners + parent___parent___internal___ignoreType + parent___parent___internal___mediaType + parent___parent___internal___owner + parent___parent___internal___type + parent___parent___parent___children + parent___parent___parent___id +} + +input SiteBuildMetadataFilterInput { + buildTime: DateQueryOperatorInput + children: NodeFilterListInput + id: StringQueryOperatorInput + internal: InternalFilterInput + parent: NodeFilterInput +} + +type SiteBuildMetadataGroupConnection { + distinct(field: SiteBuildMetadataFieldsEnum!): [String!]! + edges: [SiteBuildMetadataEdge!]! + field: String! + fieldValue: String + group(field: SiteBuildMetadataFieldsEnum!, limit: Int, skip: Int): [SiteBuildMetadataGroupConnection!]! + max(field: SiteBuildMetadataFieldsEnum!): Float + min(field: SiteBuildMetadataFieldsEnum!): Float + nodes: [SiteBuildMetadata!]! + pageInfo: PageInfo! + sum(field: SiteBuildMetadataFieldsEnum!): Float + totalCount: Int! +} + +input SiteBuildMetadataSortInput { + fields: [SiteBuildMetadataFieldsEnum] + order: [SortOrderEnum] = [ASC] +} + +type SiteConnection { + distinct(field: SiteFieldsEnum!): [String!]! + edges: [SiteEdge!]! + group(field: SiteFieldsEnum!, limit: Int, skip: Int): [SiteGroupConnection!]! + max(field: SiteFieldsEnum!): Float + min(field: SiteFieldsEnum!): Float + nodes: [Site!]! + pageInfo: PageInfo! + sum(field: SiteFieldsEnum!): Float + totalCount: Int! +} + +type SiteEdge { + next: Site + node: Site! + previous: Site +} + +enum SiteFieldsEnum { + buildTime + children + children___children + children___children___children + children___children___children___children + children___children___children___id + children___children___id + children___children___internal___content + children___children___internal___contentDigest + children___children___internal___description + children___children___internal___fieldOwners + children___children___internal___ignoreType + children___children___internal___mediaType + children___children___internal___owner + children___children___internal___type + children___children___parent___children + children___children___parent___id + children___id + children___internal___content + children___internal___contentDigest + children___internal___description + children___internal___fieldOwners + children___internal___ignoreType + children___internal___mediaType + children___internal___owner + children___internal___type + children___parent___children + children___parent___children___children + children___parent___children___id + children___parent___id + children___parent___internal___content + children___parent___internal___contentDigest + children___parent___internal___description + children___parent___internal___fieldOwners + children___parent___internal___ignoreType + children___parent___internal___mediaType + children___parent___internal___owner + children___parent___internal___type + children___parent___parent___children + children___parent___parent___id + id + internal___content + internal___contentDigest + internal___description + internal___fieldOwners + internal___ignoreType + internal___mediaType + internal___owner + internal___type + jsxRuntime + parent___children + parent___children___children + parent___children___children___children + parent___children___children___id + parent___children___id + parent___children___internal___content + parent___children___internal___contentDigest + parent___children___internal___description + parent___children___internal___fieldOwners + parent___children___internal___ignoreType + parent___children___internal___mediaType + parent___children___internal___owner + parent___children___internal___type + parent___children___parent___children + parent___children___parent___id + parent___id + parent___internal___content + parent___internal___contentDigest + parent___internal___description + parent___internal___fieldOwners + parent___internal___ignoreType + parent___internal___mediaType + parent___internal___owner + parent___internal___type + parent___parent___children + parent___parent___children___children + parent___parent___children___id + parent___parent___id + parent___parent___internal___content + parent___parent___internal___contentDigest + parent___parent___internal___description + parent___parent___internal___fieldOwners + parent___parent___internal___ignoreType + parent___parent___internal___mediaType + parent___parent___internal___owner + parent___parent___internal___type + parent___parent___parent___children + parent___parent___parent___id + pathPrefix + polyfill + siteMetadata___description + siteMetadata___title + trailingSlash +} + +input SiteFilterInput { + buildTime: DateQueryOperatorInput + children: NodeFilterListInput + id: StringQueryOperatorInput + internal: InternalFilterInput + jsxRuntime: StringQueryOperatorInput + parent: NodeFilterInput + pathPrefix: StringQueryOperatorInput + polyfill: BooleanQueryOperatorInput + siteMetadata: SiteSiteMetadataFilterInput + trailingSlash: StringQueryOperatorInput +} + +type SiteFunction implements Node { + absoluteCompiledFilePath: String! + children: [Node!]! + functionRoute: String! + id: ID! + internal: Internal! + matchPath: String + originalAbsoluteFilePath: String! + originalRelativeFilePath: String! + parent: Node + pluginName: String! + relativeCompiledFilePath: String! +} + +type SiteFunctionConnection { + distinct(field: SiteFunctionFieldsEnum!): [String!]! + edges: [SiteFunctionEdge!]! + group(field: SiteFunctionFieldsEnum!, limit: Int, skip: Int): [SiteFunctionGroupConnection!]! + max(field: SiteFunctionFieldsEnum!): Float + min(field: SiteFunctionFieldsEnum!): Float + nodes: [SiteFunction!]! + pageInfo: PageInfo! + sum(field: SiteFunctionFieldsEnum!): Float + totalCount: Int! +} + +type SiteFunctionEdge { + next: SiteFunction + node: SiteFunction! + previous: SiteFunction +} + +enum SiteFunctionFieldsEnum { + absoluteCompiledFilePath + children + children___children + children___children___children + children___children___children___children + children___children___children___id + children___children___id + children___children___internal___content + children___children___internal___contentDigest + children___children___internal___description + children___children___internal___fieldOwners + children___children___internal___ignoreType + children___children___internal___mediaType + children___children___internal___owner + children___children___internal___type + children___children___parent___children + children___children___parent___id + children___id + children___internal___content + children___internal___contentDigest + children___internal___description + children___internal___fieldOwners + children___internal___ignoreType + children___internal___mediaType + children___internal___owner + children___internal___type + children___parent___children + children___parent___children___children + children___parent___children___id + children___parent___id + children___parent___internal___content + children___parent___internal___contentDigest + children___parent___internal___description + children___parent___internal___fieldOwners + children___parent___internal___ignoreType + children___parent___internal___mediaType + children___parent___internal___owner + children___parent___internal___type + children___parent___parent___children + children___parent___parent___id + functionRoute + id + internal___content + internal___contentDigest + internal___description + internal___fieldOwners + internal___ignoreType + internal___mediaType + internal___owner + internal___type + matchPath + originalAbsoluteFilePath + originalRelativeFilePath + parent___children + parent___children___children + parent___children___children___children + parent___children___children___id + parent___children___id + parent___children___internal___content + parent___children___internal___contentDigest + parent___children___internal___description + parent___children___internal___fieldOwners + parent___children___internal___ignoreType + parent___children___internal___mediaType + parent___children___internal___owner + parent___children___internal___type + parent___children___parent___children + parent___children___parent___id + parent___id + parent___internal___content + parent___internal___contentDigest + parent___internal___description + parent___internal___fieldOwners + parent___internal___ignoreType + parent___internal___mediaType + parent___internal___owner + parent___internal___type + parent___parent___children + parent___parent___children___children + parent___parent___children___id + parent___parent___id + parent___parent___internal___content + parent___parent___internal___contentDigest + parent___parent___internal___description + parent___parent___internal___fieldOwners + parent___parent___internal___ignoreType + parent___parent___internal___mediaType + parent___parent___internal___owner + parent___parent___internal___type + parent___parent___parent___children + parent___parent___parent___id + pluginName + relativeCompiledFilePath +} + +input SiteFunctionFilterInput { + absoluteCompiledFilePath: StringQueryOperatorInput + children: NodeFilterListInput + functionRoute: StringQueryOperatorInput + id: StringQueryOperatorInput + internal: InternalFilterInput + matchPath: StringQueryOperatorInput + originalAbsoluteFilePath: StringQueryOperatorInput + originalRelativeFilePath: StringQueryOperatorInput + parent: NodeFilterInput + pluginName: StringQueryOperatorInput + relativeCompiledFilePath: StringQueryOperatorInput +} + +type SiteFunctionGroupConnection { + distinct(field: SiteFunctionFieldsEnum!): [String!]! + edges: [SiteFunctionEdge!]! + field: String! + fieldValue: String + group(field: SiteFunctionFieldsEnum!, limit: Int, skip: Int): [SiteFunctionGroupConnection!]! + max(field: SiteFunctionFieldsEnum!): Float + min(field: SiteFunctionFieldsEnum!): Float + nodes: [SiteFunction!]! + pageInfo: PageInfo! + sum(field: SiteFunctionFieldsEnum!): Float + totalCount: Int! +} + +input SiteFunctionSortInput { + fields: [SiteFunctionFieldsEnum] + order: [SortOrderEnum] = [ASC] +} + +type SiteGroupConnection { + distinct(field: SiteFieldsEnum!): [String!]! + edges: [SiteEdge!]! + field: String! + fieldValue: String + group(field: SiteFieldsEnum!, limit: Int, skip: Int): [SiteGroupConnection!]! + max(field: SiteFieldsEnum!): Float + min(field: SiteFieldsEnum!): Float + nodes: [Site!]! + pageInfo: PageInfo! + sum(field: SiteFieldsEnum!): Float + totalCount: Int! +} + +type SitePage implements Node { + children: [Node!]! + component: String! + componentChunkName: String! + id: ID! + internal: Internal! + internalComponentName: String! + matchPath: String + pageContext: JSON + parent: Node + path: String! +} + +type SitePageConnection { + distinct(field: SitePageFieldsEnum!): [String!]! + edges: [SitePageEdge!]! + group(field: SitePageFieldsEnum!, limit: Int, skip: Int): [SitePageGroupConnection!]! + max(field: SitePageFieldsEnum!): Float + min(field: SitePageFieldsEnum!): Float + nodes: [SitePage!]! + pageInfo: PageInfo! + sum(field: SitePageFieldsEnum!): Float + totalCount: Int! +} + +type SitePageEdge { + next: SitePage + node: SitePage! + previous: SitePage +} + +enum SitePageFieldsEnum { + children + children___children + children___children___children + children___children___children___children + children___children___children___id + children___children___id + children___children___internal___content + children___children___internal___contentDigest + children___children___internal___description + children___children___internal___fieldOwners + children___children___internal___ignoreType + children___children___internal___mediaType + children___children___internal___owner + children___children___internal___type + children___children___parent___children + children___children___parent___id + children___id + children___internal___content + children___internal___contentDigest + children___internal___description + children___internal___fieldOwners + children___internal___ignoreType + children___internal___mediaType + children___internal___owner + children___internal___type + children___parent___children + children___parent___children___children + children___parent___children___id + children___parent___id + children___parent___internal___content + children___parent___internal___contentDigest + children___parent___internal___description + children___parent___internal___fieldOwners + children___parent___internal___ignoreType + children___parent___internal___mediaType + children___parent___internal___owner + children___parent___internal___type + children___parent___parent___children + children___parent___parent___id + component + componentChunkName + id + internalComponentName + internal___content + internal___contentDigest + internal___description + internal___fieldOwners + internal___ignoreType + internal___mediaType + internal___owner + internal___type + matchPath + pageContext + parent___children + parent___children___children + parent___children___children___children + parent___children___children___id + parent___children___id + parent___children___internal___content + parent___children___internal___contentDigest + parent___children___internal___description + parent___children___internal___fieldOwners + parent___children___internal___ignoreType + parent___children___internal___mediaType + parent___children___internal___owner + parent___children___internal___type + parent___children___parent___children + parent___children___parent___id + parent___id + parent___internal___content + parent___internal___contentDigest + parent___internal___description + parent___internal___fieldOwners + parent___internal___ignoreType + parent___internal___mediaType + parent___internal___owner + parent___internal___type + parent___parent___children + parent___parent___children___children + parent___parent___children___id + parent___parent___id + parent___parent___internal___content + parent___parent___internal___contentDigest + parent___parent___internal___description + parent___parent___internal___fieldOwners + parent___parent___internal___ignoreType + parent___parent___internal___mediaType + parent___parent___internal___owner + parent___parent___internal___type + parent___parent___parent___children + parent___parent___parent___id + path +} + +input SitePageFilterInput { + children: NodeFilterListInput + component: StringQueryOperatorInput + componentChunkName: StringQueryOperatorInput + id: StringQueryOperatorInput + internal: InternalFilterInput + internalComponentName: StringQueryOperatorInput + matchPath: StringQueryOperatorInput + pageContext: JSONQueryOperatorInput + parent: NodeFilterInput + path: StringQueryOperatorInput +} + +type SitePageGroupConnection { + distinct(field: SitePageFieldsEnum!): [String!]! + edges: [SitePageEdge!]! + field: String! + fieldValue: String + group(field: SitePageFieldsEnum!, limit: Int, skip: Int): [SitePageGroupConnection!]! + max(field: SitePageFieldsEnum!): Float + min(field: SitePageFieldsEnum!): Float + nodes: [SitePage!]! + pageInfo: PageInfo! + sum(field: SitePageFieldsEnum!): Float + totalCount: Int! +} + +input SitePageSortInput { + fields: [SitePageFieldsEnum] + order: [SortOrderEnum] = [ASC] +} + +type SiteSiteMetadata { + description: String + title: String +} + +input SiteSiteMetadataFilterInput { + description: StringQueryOperatorInput + title: StringQueryOperatorInput +} + +input SiteSortInput { + fields: [SiteFieldsEnum] + order: [SortOrderEnum] = [ASC] +} + +enum SortOrderEnum { + ASC + DESC +} + +input StringQueryOperatorInput { + eq: String + glob: String + in: [String] + ne: String + nin: [String] + regex: String +} + +input TransformOptions { + cropFocus: ImageCropFocus = ATTENTION + duotone: DuotoneGradient = {} + fit: ImageFit = COVER + grayscale: Boolean = false + rotate: Int = 0 + trim: Float = 0 +} + +input WebPOptions { + quality: Int +} diff --git a/examples/mdx/src/__generated__/gatsby-types.d.ts b/examples/mdx/src/__generated__/gatsby-types.d.ts new file mode 100644 index 0000000..52e3f39 --- /dev/null +++ b/examples/mdx/src/__generated__/gatsby-types.d.ts @@ -0,0 +1,3239 @@ +/* eslint-disable */ + + +declare namespace GatsbyTypes { + +type Maybe = T | null; +type InputMaybe = T | null; +type Exact = { [K in keyof T]: T[K] }; +type MakeOptional = Omit & { [SubKey in K]?: Maybe }; +type MakeMaybe = Omit & { [SubKey in K]: Maybe }; +/** All built-in and custom scalars, mapped to their actual values */ +type Scalars = { + /** 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. */ + ID: string; + /** 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. */ + String: string; + /** The `Boolean` scalar type represents `true` or `false`. */ + Boolean: boolean; + /** The `Int` scalar type represents non-fractional signed whole numeric values. Int can represent values between -(2^31) and 2^31 - 1. */ + Int: number; + /** The `Float` scalar type represents signed double-precision fractional values as specified by [IEEE 754](https://en.wikipedia.org/wiki/IEEE_floating_point). */ + Float: number; + /** A date string, such as 2007-12-03, compliant with the ISO 8601 standard for representation of dates and times using the Gregorian calendar. */ + Date: string; + /** The `JSON` scalar type represents JSON values as specified by [ECMA-404](http://www.ecma-international.org/publications/files/ECMA-ST/ECMA-404.pdf). */ + JSON: any; +}; + +type AVIFOptions = { + readonly lossless: InputMaybe; + readonly quality: InputMaybe; + readonly speed: InputMaybe; +}; + +type BlurredOptions = { + /** Force the output format for the low-res preview. Default is to use the same format as the input. You should rarely need to change this */ + readonly toFormat: InputMaybe; + /** Width of the generated low-res preview. Default is 20px */ + readonly width: InputMaybe; +}; + +type BooleanQueryOperatorInput = { + readonly eq: InputMaybe; + readonly in: InputMaybe>>; + readonly ne: InputMaybe; + readonly nin: InputMaybe>>; +}; + +type DateQueryOperatorInput = { + readonly eq: InputMaybe; + readonly gt: InputMaybe; + readonly gte: InputMaybe; + readonly in: InputMaybe>>; + readonly lt: InputMaybe; + readonly lte: InputMaybe; + readonly ne: InputMaybe; + readonly nin: InputMaybe>>; +}; + +type Directory = Node & { + readonly absolutePath: Scalars['String']; + readonly accessTime: Scalars['Date']; + readonly atime: Scalars['Date']; + readonly atimeMs: Scalars['Float']; + readonly base: Scalars['String']; + readonly birthTime: Scalars['Date']; + /** @deprecated Use `birthTime` instead */ + readonly birthtime: Maybe; + /** @deprecated Use `birthTime` instead */ + readonly birthtimeMs: Maybe; + readonly changeTime: Scalars['Date']; + readonly children: ReadonlyArray; + readonly ctime: Scalars['Date']; + readonly ctimeMs: Scalars['Float']; + readonly dev: Scalars['Int']; + readonly dir: Scalars['String']; + readonly ext: Scalars['String']; + readonly extension: Scalars['String']; + readonly gid: Scalars['Int']; + readonly id: Scalars['ID']; + readonly ino: Scalars['Float']; + readonly internal: Internal; + readonly mode: Scalars['Int']; + readonly modifiedTime: Scalars['Date']; + readonly mtime: Scalars['Date']; + readonly mtimeMs: Scalars['Float']; + readonly name: Scalars['String']; + readonly nlink: Scalars['Int']; + readonly parent: Maybe; + readonly prettySize: Scalars['String']; + readonly rdev: Scalars['Int']; + readonly relativeDirectory: Scalars['String']; + readonly relativePath: Scalars['String']; + readonly root: Scalars['String']; + readonly size: Scalars['Int']; + readonly sourceInstanceName: Scalars['String']; + readonly uid: Scalars['Int']; +}; + + +type Directory_accessTimeArgs = { + difference: InputMaybe; + formatString: InputMaybe; + fromNow: InputMaybe; + locale: InputMaybe; +}; + + +type Directory_atimeArgs = { + difference: InputMaybe; + formatString: InputMaybe; + fromNow: InputMaybe; + locale: InputMaybe; +}; + + +type Directory_birthTimeArgs = { + difference: InputMaybe; + formatString: InputMaybe; + fromNow: InputMaybe; + locale: InputMaybe; +}; + + +type Directory_changeTimeArgs = { + difference: InputMaybe; + formatString: InputMaybe; + fromNow: InputMaybe; + locale: InputMaybe; +}; + + +type Directory_ctimeArgs = { + difference: InputMaybe; + formatString: InputMaybe; + fromNow: InputMaybe; + locale: InputMaybe; +}; + + +type Directory_modifiedTimeArgs = { + difference: InputMaybe; + formatString: InputMaybe; + fromNow: InputMaybe; + locale: InputMaybe; +}; + + +type Directory_mtimeArgs = { + difference: InputMaybe; + formatString: InputMaybe; + fromNow: InputMaybe; + locale: InputMaybe; +}; + +type DirectoryConnection = { + readonly distinct: ReadonlyArray; + readonly edges: ReadonlyArray; + readonly group: ReadonlyArray; + readonly max: Maybe; + readonly min: Maybe; + readonly nodes: ReadonlyArray; + readonly pageInfo: PageInfo; + readonly sum: Maybe; + readonly totalCount: Scalars['Int']; +}; + + +type DirectoryConnection_distinctArgs = { + field: DirectoryFieldsEnum; +}; + + +type DirectoryConnection_groupArgs = { + field: DirectoryFieldsEnum; + limit: InputMaybe; + skip: InputMaybe; +}; + + +type DirectoryConnection_maxArgs = { + field: DirectoryFieldsEnum; +}; + + +type DirectoryConnection_minArgs = { + field: DirectoryFieldsEnum; +}; + + +type DirectoryConnection_sumArgs = { + field: DirectoryFieldsEnum; +}; + +type DirectoryEdge = { + readonly next: Maybe; + readonly node: Directory; + readonly previous: Maybe; +}; + +type DirectoryFieldsEnum = + | 'absolutePath' + | 'accessTime' + | 'atime' + | 'atimeMs' + | 'base' + | 'birthTime' + | 'birthtime' + | 'birthtimeMs' + | 'changeTime' + | 'children' + | 'children.children' + | 'children.children.children' + | 'children.children.children.children' + | 'children.children.children.id' + | 'children.children.id' + | 'children.children.internal.content' + | 'children.children.internal.contentDigest' + | 'children.children.internal.description' + | 'children.children.internal.fieldOwners' + | 'children.children.internal.ignoreType' + | 'children.children.internal.mediaType' + | 'children.children.internal.owner' + | 'children.children.internal.type' + | 'children.children.parent.children' + | 'children.children.parent.id' + | 'children.id' + | 'children.internal.content' + | 'children.internal.contentDigest' + | 'children.internal.description' + | 'children.internal.fieldOwners' + | 'children.internal.ignoreType' + | 'children.internal.mediaType' + | 'children.internal.owner' + | 'children.internal.type' + | 'children.parent.children' + | 'children.parent.children.children' + | 'children.parent.children.id' + | 'children.parent.id' + | 'children.parent.internal.content' + | 'children.parent.internal.contentDigest' + | 'children.parent.internal.description' + | 'children.parent.internal.fieldOwners' + | 'children.parent.internal.ignoreType' + | 'children.parent.internal.mediaType' + | 'children.parent.internal.owner' + | 'children.parent.internal.type' + | 'children.parent.parent.children' + | 'children.parent.parent.id' + | 'ctime' + | 'ctimeMs' + | 'dev' + | 'dir' + | 'ext' + | 'extension' + | 'gid' + | 'id' + | 'ino' + | 'internal.content' + | 'internal.contentDigest' + | 'internal.description' + | 'internal.fieldOwners' + | 'internal.ignoreType' + | 'internal.mediaType' + | 'internal.owner' + | 'internal.type' + | 'mode' + | 'modifiedTime' + | 'mtime' + | 'mtimeMs' + | 'name' + | 'nlink' + | 'parent.children' + | 'parent.children.children' + | 'parent.children.children.children' + | 'parent.children.children.id' + | 'parent.children.id' + | 'parent.children.internal.content' + | 'parent.children.internal.contentDigest' + | 'parent.children.internal.description' + | 'parent.children.internal.fieldOwners' + | 'parent.children.internal.ignoreType' + | 'parent.children.internal.mediaType' + | 'parent.children.internal.owner' + | 'parent.children.internal.type' + | 'parent.children.parent.children' + | 'parent.children.parent.id' + | 'parent.id' + | 'parent.internal.content' + | 'parent.internal.contentDigest' + | 'parent.internal.description' + | 'parent.internal.fieldOwners' + | 'parent.internal.ignoreType' + | 'parent.internal.mediaType' + | 'parent.internal.owner' + | 'parent.internal.type' + | 'parent.parent.children' + | 'parent.parent.children.children' + | 'parent.parent.children.id' + | 'parent.parent.id' + | 'parent.parent.internal.content' + | 'parent.parent.internal.contentDigest' + | 'parent.parent.internal.description' + | 'parent.parent.internal.fieldOwners' + | 'parent.parent.internal.ignoreType' + | 'parent.parent.internal.mediaType' + | 'parent.parent.internal.owner' + | 'parent.parent.internal.type' + | 'parent.parent.parent.children' + | 'parent.parent.parent.id' + | 'prettySize' + | 'rdev' + | 'relativeDirectory' + | 'relativePath' + | 'root' + | 'size' + | 'sourceInstanceName' + | 'uid'; + +type DirectoryFilterInput = { + readonly absolutePath: InputMaybe; + readonly accessTime: InputMaybe; + readonly atime: InputMaybe; + readonly atimeMs: InputMaybe; + readonly base: InputMaybe; + readonly birthTime: InputMaybe; + readonly birthtime: InputMaybe; + readonly birthtimeMs: InputMaybe; + readonly changeTime: InputMaybe; + readonly children: InputMaybe; + readonly ctime: InputMaybe; + readonly ctimeMs: InputMaybe; + readonly dev: InputMaybe; + readonly dir: InputMaybe; + readonly ext: InputMaybe; + readonly extension: InputMaybe; + readonly gid: InputMaybe; + readonly id: InputMaybe; + readonly ino: InputMaybe; + readonly internal: InputMaybe; + readonly mode: InputMaybe; + readonly modifiedTime: InputMaybe; + readonly mtime: InputMaybe; + readonly mtimeMs: InputMaybe; + readonly name: InputMaybe; + readonly nlink: InputMaybe; + readonly parent: InputMaybe; + readonly prettySize: InputMaybe; + readonly rdev: InputMaybe; + readonly relativeDirectory: InputMaybe; + readonly relativePath: InputMaybe; + readonly root: InputMaybe; + readonly size: InputMaybe; + readonly sourceInstanceName: InputMaybe; + readonly uid: InputMaybe; +}; + +type DirectoryGroupConnection = { + readonly distinct: ReadonlyArray; + readonly edges: ReadonlyArray; + readonly field: Scalars['String']; + readonly fieldValue: Maybe; + readonly group: ReadonlyArray; + readonly max: Maybe; + readonly min: Maybe; + readonly nodes: ReadonlyArray; + readonly pageInfo: PageInfo; + readonly sum: Maybe; + readonly totalCount: Scalars['Int']; +}; + + +type DirectoryGroupConnection_distinctArgs = { + field: DirectoryFieldsEnum; +}; + + +type DirectoryGroupConnection_groupArgs = { + field: DirectoryFieldsEnum; + limit: InputMaybe; + skip: InputMaybe; +}; + + +type DirectoryGroupConnection_maxArgs = { + field: DirectoryFieldsEnum; +}; + + +type DirectoryGroupConnection_minArgs = { + field: DirectoryFieldsEnum; +}; + + +type DirectoryGroupConnection_sumArgs = { + field: DirectoryFieldsEnum; +}; + +type DirectorySortInput = { + readonly fields: InputMaybe>>; + readonly order: InputMaybe>>; +}; + +type DuotoneGradient = { + readonly highlight: Scalars['String']; + readonly opacity: InputMaybe; + readonly shadow: Scalars['String']; +}; + +type File = Node & { + readonly absolutePath: Scalars['String']; + readonly accessTime: Scalars['Date']; + readonly atime: Scalars['Date']; + readonly atimeMs: Scalars['Float']; + readonly base: Scalars['String']; + readonly birthTime: Scalars['Date']; + /** @deprecated Use `birthTime` instead */ + readonly birthtime: Maybe; + /** @deprecated Use `birthTime` instead */ + readonly birthtimeMs: Maybe; + readonly blksize: Maybe; + readonly blocks: Maybe; + readonly changeTime: Scalars['Date']; + /** Returns the first child node of type ImageSharp or null if there are no children of given type on this node */ + readonly childImageSharp: Maybe; + readonly children: ReadonlyArray; + /** Returns all children nodes filtered by type ImageSharp */ + readonly childrenImageSharp: Maybe>>; + readonly ctime: Scalars['Date']; + readonly ctimeMs: Scalars['Float']; + readonly dev: Scalars['Int']; + readonly dir: Scalars['String']; + readonly ext: Scalars['String']; + readonly extension: Scalars['String']; + readonly gid: Scalars['Int']; + readonly id: Scalars['ID']; + readonly ino: Scalars['Float']; + readonly internal: Internal; + readonly mode: Scalars['Int']; + readonly modifiedTime: Scalars['Date']; + readonly mtime: Scalars['Date']; + readonly mtimeMs: Scalars['Float']; + readonly name: Scalars['String']; + readonly nlink: Scalars['Int']; + readonly parent: Maybe; + readonly prettySize: Scalars['String']; + /** Copy file to static directory and return public url to it */ + readonly publicURL: Maybe; + readonly rdev: Scalars['Int']; + readonly relativeDirectory: Scalars['String']; + readonly relativePath: Scalars['String']; + readonly root: Scalars['String']; + readonly size: Scalars['Int']; + readonly sourceInstanceName: Scalars['String']; + readonly uid: Scalars['Int']; +}; + + +type File_accessTimeArgs = { + difference: InputMaybe; + formatString: InputMaybe; + fromNow: InputMaybe; + locale: InputMaybe; +}; + + +type File_atimeArgs = { + difference: InputMaybe; + formatString: InputMaybe; + fromNow: InputMaybe; + locale: InputMaybe; +}; + + +type File_birthTimeArgs = { + difference: InputMaybe; + formatString: InputMaybe; + fromNow: InputMaybe; + locale: InputMaybe; +}; + + +type File_changeTimeArgs = { + difference: InputMaybe; + formatString: InputMaybe; + fromNow: InputMaybe; + locale: InputMaybe; +}; + + +type File_ctimeArgs = { + difference: InputMaybe; + formatString: InputMaybe; + fromNow: InputMaybe; + locale: InputMaybe; +}; + + +type File_modifiedTimeArgs = { + difference: InputMaybe; + formatString: InputMaybe; + fromNow: InputMaybe; + locale: InputMaybe; +}; + + +type File_mtimeArgs = { + difference: InputMaybe; + formatString: InputMaybe; + fromNow: InputMaybe; + locale: InputMaybe; +}; + +type FileConnection = { + readonly distinct: ReadonlyArray; + readonly edges: ReadonlyArray; + readonly group: ReadonlyArray; + readonly max: Maybe; + readonly min: Maybe; + readonly nodes: ReadonlyArray; + readonly pageInfo: PageInfo; + readonly sum: Maybe; + readonly totalCount: Scalars['Int']; +}; + + +type FileConnection_distinctArgs = { + field: FileFieldsEnum; +}; + + +type FileConnection_groupArgs = { + field: FileFieldsEnum; + limit: InputMaybe; + skip: InputMaybe; +}; + + +type FileConnection_maxArgs = { + field: FileFieldsEnum; +}; + + +type FileConnection_minArgs = { + field: FileFieldsEnum; +}; + + +type FileConnection_sumArgs = { + field: FileFieldsEnum; +}; + +type FileEdge = { + readonly next: Maybe; + readonly node: File; + readonly previous: Maybe; +}; + +type FileFieldsEnum = + | 'absolutePath' + | 'accessTime' + | 'atime' + | 'atimeMs' + | 'base' + | 'birthTime' + | 'birthtime' + | 'birthtimeMs' + | 'blksize' + | 'blocks' + | 'changeTime' + | 'childImageSharp.children' + | 'childImageSharp.children.children' + | 'childImageSharp.children.children.children' + | 'childImageSharp.children.children.id' + | 'childImageSharp.children.id' + | 'childImageSharp.children.internal.content' + | 'childImageSharp.children.internal.contentDigest' + | 'childImageSharp.children.internal.description' + | 'childImageSharp.children.internal.fieldOwners' + | 'childImageSharp.children.internal.ignoreType' + | 'childImageSharp.children.internal.mediaType' + | 'childImageSharp.children.internal.owner' + | 'childImageSharp.children.internal.type' + | 'childImageSharp.children.parent.children' + | 'childImageSharp.children.parent.id' + | 'childImageSharp.fixed.aspectRatio' + | 'childImageSharp.fixed.base64' + | 'childImageSharp.fixed.height' + | 'childImageSharp.fixed.originalName' + | 'childImageSharp.fixed.src' + | 'childImageSharp.fixed.srcSet' + | 'childImageSharp.fixed.srcSetWebp' + | 'childImageSharp.fixed.srcWebp' + | 'childImageSharp.fixed.tracedSVG' + | 'childImageSharp.fixed.width' + | 'childImageSharp.fluid.aspectRatio' + | 'childImageSharp.fluid.base64' + | 'childImageSharp.fluid.originalImg' + | 'childImageSharp.fluid.originalName' + | 'childImageSharp.fluid.presentationHeight' + | 'childImageSharp.fluid.presentationWidth' + | 'childImageSharp.fluid.sizes' + | 'childImageSharp.fluid.src' + | 'childImageSharp.fluid.srcSet' + | 'childImageSharp.fluid.srcSetWebp' + | 'childImageSharp.fluid.srcWebp' + | 'childImageSharp.fluid.tracedSVG' + | 'childImageSharp.gatsbyImageData' + | 'childImageSharp.id' + | 'childImageSharp.internal.content' + | 'childImageSharp.internal.contentDigest' + | 'childImageSharp.internal.description' + | 'childImageSharp.internal.fieldOwners' + | 'childImageSharp.internal.ignoreType' + | 'childImageSharp.internal.mediaType' + | 'childImageSharp.internal.owner' + | 'childImageSharp.internal.type' + | 'childImageSharp.original.height' + | 'childImageSharp.original.src' + | 'childImageSharp.original.width' + | 'childImageSharp.parent.children' + | 'childImageSharp.parent.children.children' + | 'childImageSharp.parent.children.id' + | 'childImageSharp.parent.id' + | 'childImageSharp.parent.internal.content' + | 'childImageSharp.parent.internal.contentDigest' + | 'childImageSharp.parent.internal.description' + | 'childImageSharp.parent.internal.fieldOwners' + | 'childImageSharp.parent.internal.ignoreType' + | 'childImageSharp.parent.internal.mediaType' + | 'childImageSharp.parent.internal.owner' + | 'childImageSharp.parent.internal.type' + | 'childImageSharp.parent.parent.children' + | 'childImageSharp.parent.parent.id' + | 'childImageSharp.resize.aspectRatio' + | 'childImageSharp.resize.height' + | 'childImageSharp.resize.originalName' + | 'childImageSharp.resize.src' + | 'childImageSharp.resize.tracedSVG' + | 'childImageSharp.resize.width' + | 'children' + | 'childrenImageSharp' + | 'childrenImageSharp.children' + | 'childrenImageSharp.children.children' + | 'childrenImageSharp.children.children.children' + | 'childrenImageSharp.children.children.id' + | 'childrenImageSharp.children.id' + | 'childrenImageSharp.children.internal.content' + | 'childrenImageSharp.children.internal.contentDigest' + | 'childrenImageSharp.children.internal.description' + | 'childrenImageSharp.children.internal.fieldOwners' + | 'childrenImageSharp.children.internal.ignoreType' + | 'childrenImageSharp.children.internal.mediaType' + | 'childrenImageSharp.children.internal.owner' + | 'childrenImageSharp.children.internal.type' + | 'childrenImageSharp.children.parent.children' + | 'childrenImageSharp.children.parent.id' + | 'childrenImageSharp.fixed.aspectRatio' + | 'childrenImageSharp.fixed.base64' + | 'childrenImageSharp.fixed.height' + | 'childrenImageSharp.fixed.originalName' + | 'childrenImageSharp.fixed.src' + | 'childrenImageSharp.fixed.srcSet' + | 'childrenImageSharp.fixed.srcSetWebp' + | 'childrenImageSharp.fixed.srcWebp' + | 'childrenImageSharp.fixed.tracedSVG' + | 'childrenImageSharp.fixed.width' + | 'childrenImageSharp.fluid.aspectRatio' + | 'childrenImageSharp.fluid.base64' + | 'childrenImageSharp.fluid.originalImg' + | 'childrenImageSharp.fluid.originalName' + | 'childrenImageSharp.fluid.presentationHeight' + | 'childrenImageSharp.fluid.presentationWidth' + | 'childrenImageSharp.fluid.sizes' + | 'childrenImageSharp.fluid.src' + | 'childrenImageSharp.fluid.srcSet' + | 'childrenImageSharp.fluid.srcSetWebp' + | 'childrenImageSharp.fluid.srcWebp' + | 'childrenImageSharp.fluid.tracedSVG' + | 'childrenImageSharp.gatsbyImageData' + | 'childrenImageSharp.id' + | 'childrenImageSharp.internal.content' + | 'childrenImageSharp.internal.contentDigest' + | 'childrenImageSharp.internal.description' + | 'childrenImageSharp.internal.fieldOwners' + | 'childrenImageSharp.internal.ignoreType' + | 'childrenImageSharp.internal.mediaType' + | 'childrenImageSharp.internal.owner' + | 'childrenImageSharp.internal.type' + | 'childrenImageSharp.original.height' + | 'childrenImageSharp.original.src' + | 'childrenImageSharp.original.width' + | 'childrenImageSharp.parent.children' + | 'childrenImageSharp.parent.children.children' + | 'childrenImageSharp.parent.children.id' + | 'childrenImageSharp.parent.id' + | 'childrenImageSharp.parent.internal.content' + | 'childrenImageSharp.parent.internal.contentDigest' + | 'childrenImageSharp.parent.internal.description' + | 'childrenImageSharp.parent.internal.fieldOwners' + | 'childrenImageSharp.parent.internal.ignoreType' + | 'childrenImageSharp.parent.internal.mediaType' + | 'childrenImageSharp.parent.internal.owner' + | 'childrenImageSharp.parent.internal.type' + | 'childrenImageSharp.parent.parent.children' + | 'childrenImageSharp.parent.parent.id' + | 'childrenImageSharp.resize.aspectRatio' + | 'childrenImageSharp.resize.height' + | 'childrenImageSharp.resize.originalName' + | 'childrenImageSharp.resize.src' + | 'childrenImageSharp.resize.tracedSVG' + | 'childrenImageSharp.resize.width' + | 'children.children' + | 'children.children.children' + | 'children.children.children.children' + | 'children.children.children.id' + | 'children.children.id' + | 'children.children.internal.content' + | 'children.children.internal.contentDigest' + | 'children.children.internal.description' + | 'children.children.internal.fieldOwners' + | 'children.children.internal.ignoreType' + | 'children.children.internal.mediaType' + | 'children.children.internal.owner' + | 'children.children.internal.type' + | 'children.children.parent.children' + | 'children.children.parent.id' + | 'children.id' + | 'children.internal.content' + | 'children.internal.contentDigest' + | 'children.internal.description' + | 'children.internal.fieldOwners' + | 'children.internal.ignoreType' + | 'children.internal.mediaType' + | 'children.internal.owner' + | 'children.internal.type' + | 'children.parent.children' + | 'children.parent.children.children' + | 'children.parent.children.id' + | 'children.parent.id' + | 'children.parent.internal.content' + | 'children.parent.internal.contentDigest' + | 'children.parent.internal.description' + | 'children.parent.internal.fieldOwners' + | 'children.parent.internal.ignoreType' + | 'children.parent.internal.mediaType' + | 'children.parent.internal.owner' + | 'children.parent.internal.type' + | 'children.parent.parent.children' + | 'children.parent.parent.id' + | 'ctime' + | 'ctimeMs' + | 'dev' + | 'dir' + | 'ext' + | 'extension' + | 'gid' + | 'id' + | 'ino' + | 'internal.content' + | 'internal.contentDigest' + | 'internal.description' + | 'internal.fieldOwners' + | 'internal.ignoreType' + | 'internal.mediaType' + | 'internal.owner' + | 'internal.type' + | 'mode' + | 'modifiedTime' + | 'mtime' + | 'mtimeMs' + | 'name' + | 'nlink' + | 'parent.children' + | 'parent.children.children' + | 'parent.children.children.children' + | 'parent.children.children.id' + | 'parent.children.id' + | 'parent.children.internal.content' + | 'parent.children.internal.contentDigest' + | 'parent.children.internal.description' + | 'parent.children.internal.fieldOwners' + | 'parent.children.internal.ignoreType' + | 'parent.children.internal.mediaType' + | 'parent.children.internal.owner' + | 'parent.children.internal.type' + | 'parent.children.parent.children' + | 'parent.children.parent.id' + | 'parent.id' + | 'parent.internal.content' + | 'parent.internal.contentDigest' + | 'parent.internal.description' + | 'parent.internal.fieldOwners' + | 'parent.internal.ignoreType' + | 'parent.internal.mediaType' + | 'parent.internal.owner' + | 'parent.internal.type' + | 'parent.parent.children' + | 'parent.parent.children.children' + | 'parent.parent.children.id' + | 'parent.parent.id' + | 'parent.parent.internal.content' + | 'parent.parent.internal.contentDigest' + | 'parent.parent.internal.description' + | 'parent.parent.internal.fieldOwners' + | 'parent.parent.internal.ignoreType' + | 'parent.parent.internal.mediaType' + | 'parent.parent.internal.owner' + | 'parent.parent.internal.type' + | 'parent.parent.parent.children' + | 'parent.parent.parent.id' + | 'prettySize' + | 'publicURL' + | 'rdev' + | 'relativeDirectory' + | 'relativePath' + | 'root' + | 'size' + | 'sourceInstanceName' + | 'uid'; + +type FileFilterInput = { + readonly absolutePath: InputMaybe; + readonly accessTime: InputMaybe; + readonly atime: InputMaybe; + readonly atimeMs: InputMaybe; + readonly base: InputMaybe; + readonly birthTime: InputMaybe; + readonly birthtime: InputMaybe; + readonly birthtimeMs: InputMaybe; + readonly blksize: InputMaybe; + readonly blocks: InputMaybe; + readonly changeTime: InputMaybe; + readonly childImageSharp: InputMaybe; + readonly children: InputMaybe; + readonly childrenImageSharp: InputMaybe; + readonly ctime: InputMaybe; + readonly ctimeMs: InputMaybe; + readonly dev: InputMaybe; + readonly dir: InputMaybe; + readonly ext: InputMaybe; + readonly extension: InputMaybe; + readonly gid: InputMaybe; + readonly id: InputMaybe; + readonly ino: InputMaybe; + readonly internal: InputMaybe; + readonly mode: InputMaybe; + readonly modifiedTime: InputMaybe; + readonly mtime: InputMaybe; + readonly mtimeMs: InputMaybe; + readonly name: InputMaybe; + readonly nlink: InputMaybe; + readonly parent: InputMaybe; + readonly prettySize: InputMaybe; + readonly publicURL: InputMaybe; + readonly rdev: InputMaybe; + readonly relativeDirectory: InputMaybe; + readonly relativePath: InputMaybe; + readonly root: InputMaybe; + readonly size: InputMaybe; + readonly sourceInstanceName: InputMaybe; + readonly uid: InputMaybe; +}; + +type FileGroupConnection = { + readonly distinct: ReadonlyArray; + readonly edges: ReadonlyArray; + readonly field: Scalars['String']; + readonly fieldValue: Maybe; + readonly group: ReadonlyArray; + readonly max: Maybe; + readonly min: Maybe; + readonly nodes: ReadonlyArray; + readonly pageInfo: PageInfo; + readonly sum: Maybe; + readonly totalCount: Scalars['Int']; +}; + + +type FileGroupConnection_distinctArgs = { + field: FileFieldsEnum; +}; + + +type FileGroupConnection_groupArgs = { + field: FileFieldsEnum; + limit: InputMaybe; + skip: InputMaybe; +}; + + +type FileGroupConnection_maxArgs = { + field: FileFieldsEnum; +}; + + +type FileGroupConnection_minArgs = { + field: FileFieldsEnum; +}; + + +type FileGroupConnection_sumArgs = { + field: FileFieldsEnum; +}; + +type FileSortInput = { + readonly fields: InputMaybe>>; + readonly order: InputMaybe>>; +}; + +type FloatQueryOperatorInput = { + readonly eq: InputMaybe; + readonly gt: InputMaybe; + readonly gte: InputMaybe; + readonly in: InputMaybe>>; + readonly lt: InputMaybe; + readonly lte: InputMaybe; + readonly ne: InputMaybe; + readonly nin: InputMaybe>>; +}; + +type GatsbyImageFormat = + | 'auto' + | 'avif' + | 'jpg' + | 'NO_CHANGE' + | 'png' + | 'webp'; + +type GatsbyImageLayout = + | 'constrained' + | 'fixed' + | 'fullWidth'; + +type GatsbyImagePlaceholder = + | 'blurred' + | 'dominantColor' + | 'none' + | 'tracedSVG'; + +type HeadingsMdx = + | 'h1' + | 'h2' + | 'h3' + | 'h4' + | 'h5' + | 'h6'; + +type ImageCropFocus = + | 17 + | 'CENTER' + | 2 + | 16 + | 1 + | 5 + | 8 + | 3 + | 6 + | 7 + | 4; + +type ImageFit = + | 'contain' + | 'cover' + | 'fill' + | 'inside' + | 'outside'; + +type ImageFormat = + | 'AUTO' + | 'avif' + | 'jpg' + | 'NO_CHANGE' + | 'png' + | 'webp'; + +type ImageLayout = + | 'constrained' + | 'fixed' + | 'fullWidth'; + +type ImagePlaceholder = + | 'blurred' + | 'dominantColor' + | 'none' + | 'tracedSVG'; + +type ImageSharp = Node & { + readonly children: ReadonlyArray; + readonly fixed: Maybe; + readonly fluid: Maybe; + readonly gatsbyImageData: Scalars['JSON']; + readonly id: Scalars['ID']; + readonly internal: Internal; + readonly original: Maybe; + readonly parent: Maybe; + readonly resize: Maybe; +}; + + +type ImageSharp_fixedArgs = { + background?: InputMaybe; + base64Width: InputMaybe; + cropFocus?: InputMaybe; + duotone?: InputMaybe; + fit?: InputMaybe; + grayscale?: InputMaybe; + height: InputMaybe; + jpegProgressive?: InputMaybe; + jpegQuality: InputMaybe; + pngCompressionSpeed?: InputMaybe; + pngQuality: InputMaybe; + quality: InputMaybe; + rotate?: InputMaybe; + toFormat?: InputMaybe; + toFormatBase64?: InputMaybe; + traceSVG?: InputMaybe; + trim?: InputMaybe; + webpQuality: InputMaybe; + width: InputMaybe; +}; + + +type ImageSharp_fluidArgs = { + background?: InputMaybe; + base64Width: InputMaybe; + cropFocus?: InputMaybe; + duotone?: InputMaybe; + fit?: InputMaybe; + grayscale?: InputMaybe; + jpegProgressive?: InputMaybe; + jpegQuality: InputMaybe; + maxHeight: InputMaybe; + maxWidth: InputMaybe; + pngCompressionSpeed?: InputMaybe; + pngQuality: InputMaybe; + quality: InputMaybe; + rotate?: InputMaybe; + sizes?: InputMaybe; + srcSetBreakpoints?: InputMaybe>>; + toFormat?: InputMaybe; + toFormatBase64?: InputMaybe; + traceSVG?: InputMaybe; + trim?: InputMaybe; + webpQuality: InputMaybe; +}; + + +type ImageSharp_gatsbyImageDataArgs = { + aspectRatio: InputMaybe; + avifOptions: InputMaybe; + backgroundColor: InputMaybe; + blurredOptions: InputMaybe; + breakpoints: InputMaybe>>; + formats: InputMaybe>>; + height: InputMaybe; + jpgOptions: InputMaybe; + layout?: InputMaybe; + outputPixelDensities: InputMaybe>>; + placeholder: InputMaybe; + pngOptions: InputMaybe; + quality: InputMaybe; + sizes: InputMaybe; + tracedSVGOptions: InputMaybe; + transformOptions: InputMaybe; + webpOptions: InputMaybe; + width: InputMaybe; +}; + + +type ImageSharp_resizeArgs = { + background?: InputMaybe; + base64?: InputMaybe; + cropFocus?: InputMaybe; + duotone?: InputMaybe; + fit?: InputMaybe; + grayscale?: InputMaybe; + height: InputMaybe; + jpegProgressive?: InputMaybe; + jpegQuality: InputMaybe; + pngCompressionLevel?: InputMaybe; + pngCompressionSpeed?: InputMaybe; + pngQuality: InputMaybe; + quality: InputMaybe; + rotate?: InputMaybe; + toFormat?: InputMaybe; + traceSVG?: InputMaybe; + trim?: InputMaybe; + webpQuality: InputMaybe; + width: InputMaybe; +}; + +type ImageSharpConnection = { + readonly distinct: ReadonlyArray; + readonly edges: ReadonlyArray; + readonly group: ReadonlyArray; + readonly max: Maybe; + readonly min: Maybe; + readonly nodes: ReadonlyArray; + readonly pageInfo: PageInfo; + readonly sum: Maybe; + readonly totalCount: Scalars['Int']; +}; + + +type ImageSharpConnection_distinctArgs = { + field: ImageSharpFieldsEnum; +}; + + +type ImageSharpConnection_groupArgs = { + field: ImageSharpFieldsEnum; + limit: InputMaybe; + skip: InputMaybe; +}; + + +type ImageSharpConnection_maxArgs = { + field: ImageSharpFieldsEnum; +}; + + +type ImageSharpConnection_minArgs = { + field: ImageSharpFieldsEnum; +}; + + +type ImageSharpConnection_sumArgs = { + field: ImageSharpFieldsEnum; +}; + +type ImageSharpEdge = { + readonly next: Maybe; + readonly node: ImageSharp; + readonly previous: Maybe; +}; + +type ImageSharpFieldsEnum = + | 'children' + | 'children.children' + | 'children.children.children' + | 'children.children.children.children' + | 'children.children.children.id' + | 'children.children.id' + | 'children.children.internal.content' + | 'children.children.internal.contentDigest' + | 'children.children.internal.description' + | 'children.children.internal.fieldOwners' + | 'children.children.internal.ignoreType' + | 'children.children.internal.mediaType' + | 'children.children.internal.owner' + | 'children.children.internal.type' + | 'children.children.parent.children' + | 'children.children.parent.id' + | 'children.id' + | 'children.internal.content' + | 'children.internal.contentDigest' + | 'children.internal.description' + | 'children.internal.fieldOwners' + | 'children.internal.ignoreType' + | 'children.internal.mediaType' + | 'children.internal.owner' + | 'children.internal.type' + | 'children.parent.children' + | 'children.parent.children.children' + | 'children.parent.children.id' + | 'children.parent.id' + | 'children.parent.internal.content' + | 'children.parent.internal.contentDigest' + | 'children.parent.internal.description' + | 'children.parent.internal.fieldOwners' + | 'children.parent.internal.ignoreType' + | 'children.parent.internal.mediaType' + | 'children.parent.internal.owner' + | 'children.parent.internal.type' + | 'children.parent.parent.children' + | 'children.parent.parent.id' + | 'fixed.aspectRatio' + | 'fixed.base64' + | 'fixed.height' + | 'fixed.originalName' + | 'fixed.src' + | 'fixed.srcSet' + | 'fixed.srcSetWebp' + | 'fixed.srcWebp' + | 'fixed.tracedSVG' + | 'fixed.width' + | 'fluid.aspectRatio' + | 'fluid.base64' + | 'fluid.originalImg' + | 'fluid.originalName' + | 'fluid.presentationHeight' + | 'fluid.presentationWidth' + | 'fluid.sizes' + | 'fluid.src' + | 'fluid.srcSet' + | 'fluid.srcSetWebp' + | 'fluid.srcWebp' + | 'fluid.tracedSVG' + | 'gatsbyImageData' + | 'id' + | 'internal.content' + | 'internal.contentDigest' + | 'internal.description' + | 'internal.fieldOwners' + | 'internal.ignoreType' + | 'internal.mediaType' + | 'internal.owner' + | 'internal.type' + | 'original.height' + | 'original.src' + | 'original.width' + | 'parent.children' + | 'parent.children.children' + | 'parent.children.children.children' + | 'parent.children.children.id' + | 'parent.children.id' + | 'parent.children.internal.content' + | 'parent.children.internal.contentDigest' + | 'parent.children.internal.description' + | 'parent.children.internal.fieldOwners' + | 'parent.children.internal.ignoreType' + | 'parent.children.internal.mediaType' + | 'parent.children.internal.owner' + | 'parent.children.internal.type' + | 'parent.children.parent.children' + | 'parent.children.parent.id' + | 'parent.id' + | 'parent.internal.content' + | 'parent.internal.contentDigest' + | 'parent.internal.description' + | 'parent.internal.fieldOwners' + | 'parent.internal.ignoreType' + | 'parent.internal.mediaType' + | 'parent.internal.owner' + | 'parent.internal.type' + | 'parent.parent.children' + | 'parent.parent.children.children' + | 'parent.parent.children.id' + | 'parent.parent.id' + | 'parent.parent.internal.content' + | 'parent.parent.internal.contentDigest' + | 'parent.parent.internal.description' + | 'parent.parent.internal.fieldOwners' + | 'parent.parent.internal.ignoreType' + | 'parent.parent.internal.mediaType' + | 'parent.parent.internal.owner' + | 'parent.parent.internal.type' + | 'parent.parent.parent.children' + | 'parent.parent.parent.id' + | 'resize.aspectRatio' + | 'resize.height' + | 'resize.originalName' + | 'resize.src' + | 'resize.tracedSVG' + | 'resize.width'; + +type ImageSharpFilterInput = { + readonly children: InputMaybe; + readonly fixed: InputMaybe; + readonly fluid: InputMaybe; + readonly gatsbyImageData: InputMaybe; + readonly id: InputMaybe; + readonly internal: InputMaybe; + readonly original: InputMaybe; + readonly parent: InputMaybe; + readonly resize: InputMaybe; +}; + +type ImageSharpFilterListInput = { + readonly elemMatch: InputMaybe; +}; + +type ImageSharpFixed = { + readonly aspectRatio: Maybe; + readonly base64: Maybe; + readonly height: Scalars['Float']; + readonly originalName: Maybe; + readonly src: Scalars['String']; + readonly srcSet: Scalars['String']; + readonly srcSetWebp: Maybe; + readonly srcWebp: Maybe; + readonly tracedSVG: Maybe; + readonly width: Scalars['Float']; +}; + +type ImageSharpFixedFilterInput = { + readonly aspectRatio: InputMaybe; + readonly base64: InputMaybe; + readonly height: InputMaybe; + readonly originalName: InputMaybe; + readonly src: InputMaybe; + readonly srcSet: InputMaybe; + readonly srcSetWebp: InputMaybe; + readonly srcWebp: InputMaybe; + readonly tracedSVG: InputMaybe; + readonly width: InputMaybe; +}; + +type ImageSharpFluid = { + readonly aspectRatio: Scalars['Float']; + readonly base64: Maybe; + readonly originalImg: Maybe; + readonly originalName: Maybe; + readonly presentationHeight: Scalars['Int']; + readonly presentationWidth: Scalars['Int']; + readonly sizes: Scalars['String']; + readonly src: Scalars['String']; + readonly srcSet: Scalars['String']; + readonly srcSetWebp: Maybe; + readonly srcWebp: Maybe; + readonly tracedSVG: Maybe; +}; + +type ImageSharpFluidFilterInput = { + readonly aspectRatio: InputMaybe; + readonly base64: InputMaybe; + readonly originalImg: InputMaybe; + readonly originalName: InputMaybe; + readonly presentationHeight: InputMaybe; + readonly presentationWidth: InputMaybe; + readonly sizes: InputMaybe; + readonly src: InputMaybe; + readonly srcSet: InputMaybe; + readonly srcSetWebp: InputMaybe; + readonly srcWebp: InputMaybe; + readonly tracedSVG: InputMaybe; +}; + +type ImageSharpGroupConnection = { + readonly distinct: ReadonlyArray; + readonly edges: ReadonlyArray; + readonly field: Scalars['String']; + readonly fieldValue: Maybe; + readonly group: ReadonlyArray; + readonly max: Maybe; + readonly min: Maybe; + readonly nodes: ReadonlyArray; + readonly pageInfo: PageInfo; + readonly sum: Maybe; + readonly totalCount: Scalars['Int']; +}; + + +type ImageSharpGroupConnection_distinctArgs = { + field: ImageSharpFieldsEnum; +}; + + +type ImageSharpGroupConnection_groupArgs = { + field: ImageSharpFieldsEnum; + limit: InputMaybe; + skip: InputMaybe; +}; + + +type ImageSharpGroupConnection_maxArgs = { + field: ImageSharpFieldsEnum; +}; + + +type ImageSharpGroupConnection_minArgs = { + field: ImageSharpFieldsEnum; +}; + + +type ImageSharpGroupConnection_sumArgs = { + field: ImageSharpFieldsEnum; +}; + +type ImageSharpOriginal = { + readonly height: Maybe; + readonly src: Maybe; + readonly width: Maybe; +}; + +type ImageSharpOriginalFilterInput = { + readonly height: InputMaybe; + readonly src: InputMaybe; + readonly width: InputMaybe; +}; + +type ImageSharpResize = { + readonly aspectRatio: Maybe; + readonly height: Maybe; + readonly originalName: Maybe; + readonly src: Maybe; + readonly tracedSVG: Maybe; + readonly width: Maybe; +}; + +type ImageSharpResizeFilterInput = { + readonly aspectRatio: InputMaybe; + readonly height: InputMaybe; + readonly originalName: InputMaybe; + readonly src: InputMaybe; + readonly tracedSVG: InputMaybe; + readonly width: InputMaybe; +}; + +type ImageSharpSortInput = { + readonly fields: InputMaybe>>; + readonly order: InputMaybe>>; +}; + +type IntQueryOperatorInput = { + readonly eq: InputMaybe; + readonly gt: InputMaybe; + readonly gte: InputMaybe; + readonly in: InputMaybe>>; + readonly lt: InputMaybe; + readonly lte: InputMaybe; + readonly ne: InputMaybe; + readonly nin: InputMaybe>>; +}; + +type Internal = { + readonly content: Maybe; + readonly contentDigest: Scalars['String']; + readonly description: Maybe; + readonly fieldOwners: Maybe>>; + readonly ignoreType: Maybe; + readonly mediaType: Maybe; + readonly owner: Scalars['String']; + readonly type: Scalars['String']; +}; + +type InternalFilterInput = { + readonly content: InputMaybe; + readonly contentDigest: InputMaybe; + readonly description: InputMaybe; + readonly fieldOwners: InputMaybe; + readonly ignoreType: InputMaybe; + readonly mediaType: InputMaybe; + readonly owner: InputMaybe; + readonly type: InputMaybe; +}; + +type JPGOptions = { + readonly progressive: InputMaybe; + readonly quality: InputMaybe; +}; + +type JSONQueryOperatorInput = { + readonly eq: InputMaybe; + readonly glob: InputMaybe; + readonly in: InputMaybe>>; + readonly ne: InputMaybe; + readonly nin: InputMaybe>>; + readonly regex: InputMaybe; +}; + +type Mdx = Node & { + readonly body: Scalars['String']; + readonly children: ReadonlyArray; + readonly excerpt: Scalars['String']; + readonly fileAbsolutePath: Scalars['String']; + readonly frontmatter: Maybe; + readonly headings: Maybe>>; + readonly html: Maybe; + readonly id: Scalars['ID']; + readonly internal: Internal; + readonly mdxAST: Maybe; + readonly parent: Maybe; + readonly rawBody: Scalars['String']; + readonly slug: Maybe; + readonly tableOfContents: Maybe; + readonly timeToRead: Maybe; + readonly wordCount: Maybe; +}; + + +type Mdx_excerptArgs = { + pruneLength?: InputMaybe; + truncate?: InputMaybe; +}; + + +type Mdx_headingsArgs = { + depth: InputMaybe; +}; + + +type Mdx_tableOfContentsArgs = { + maxDepth: InputMaybe; +}; + +type MdxConnection = { + readonly distinct: ReadonlyArray; + readonly edges: ReadonlyArray; + readonly group: ReadonlyArray; + readonly max: Maybe; + readonly min: Maybe; + readonly nodes: ReadonlyArray; + readonly pageInfo: PageInfo; + readonly sum: Maybe; + readonly totalCount: Scalars['Int']; +}; + + +type MdxConnection_distinctArgs = { + field: MdxFieldsEnum; +}; + + +type MdxConnection_groupArgs = { + field: MdxFieldsEnum; + limit: InputMaybe; + skip: InputMaybe; +}; + + +type MdxConnection_maxArgs = { + field: MdxFieldsEnum; +}; + + +type MdxConnection_minArgs = { + field: MdxFieldsEnum; +}; + + +type MdxConnection_sumArgs = { + field: MdxFieldsEnum; +}; + +type MdxEdge = { + readonly next: Maybe; + readonly node: Mdx; + readonly previous: Maybe; +}; + +type MdxFieldsEnum = + | 'body' + | 'children' + | 'children.children' + | 'children.children.children' + | 'children.children.children.children' + | 'children.children.children.id' + | 'children.children.id' + | 'children.children.internal.content' + | 'children.children.internal.contentDigest' + | 'children.children.internal.description' + | 'children.children.internal.fieldOwners' + | 'children.children.internal.ignoreType' + | 'children.children.internal.mediaType' + | 'children.children.internal.owner' + | 'children.children.internal.type' + | 'children.children.parent.children' + | 'children.children.parent.id' + | 'children.id' + | 'children.internal.content' + | 'children.internal.contentDigest' + | 'children.internal.description' + | 'children.internal.fieldOwners' + | 'children.internal.ignoreType' + | 'children.internal.mediaType' + | 'children.internal.owner' + | 'children.internal.type' + | 'children.parent.children' + | 'children.parent.children.children' + | 'children.parent.children.id' + | 'children.parent.id' + | 'children.parent.internal.content' + | 'children.parent.internal.contentDigest' + | 'children.parent.internal.description' + | 'children.parent.internal.fieldOwners' + | 'children.parent.internal.ignoreType' + | 'children.parent.internal.mediaType' + | 'children.parent.internal.owner' + | 'children.parent.internal.type' + | 'children.parent.parent.children' + | 'children.parent.parent.id' + | 'excerpt' + | 'fileAbsolutePath' + | 'frontmatter.title' + | 'headings' + | 'headings.depth' + | 'headings.value' + | 'html' + | 'id' + | 'internal.content' + | 'internal.contentDigest' + | 'internal.description' + | 'internal.fieldOwners' + | 'internal.ignoreType' + | 'internal.mediaType' + | 'internal.owner' + | 'internal.type' + | 'mdxAST' + | 'parent.children' + | 'parent.children.children' + | 'parent.children.children.children' + | 'parent.children.children.id' + | 'parent.children.id' + | 'parent.children.internal.content' + | 'parent.children.internal.contentDigest' + | 'parent.children.internal.description' + | 'parent.children.internal.fieldOwners' + | 'parent.children.internal.ignoreType' + | 'parent.children.internal.mediaType' + | 'parent.children.internal.owner' + | 'parent.children.internal.type' + | 'parent.children.parent.children' + | 'parent.children.parent.id' + | 'parent.id' + | 'parent.internal.content' + | 'parent.internal.contentDigest' + | 'parent.internal.description' + | 'parent.internal.fieldOwners' + | 'parent.internal.ignoreType' + | 'parent.internal.mediaType' + | 'parent.internal.owner' + | 'parent.internal.type' + | 'parent.parent.children' + | 'parent.parent.children.children' + | 'parent.parent.children.id' + | 'parent.parent.id' + | 'parent.parent.internal.content' + | 'parent.parent.internal.contentDigest' + | 'parent.parent.internal.description' + | 'parent.parent.internal.fieldOwners' + | 'parent.parent.internal.ignoreType' + | 'parent.parent.internal.mediaType' + | 'parent.parent.internal.owner' + | 'parent.parent.internal.type' + | 'parent.parent.parent.children' + | 'parent.parent.parent.id' + | 'rawBody' + | 'slug' + | 'tableOfContents' + | 'timeToRead' + | 'wordCount.paragraphs' + | 'wordCount.sentences' + | 'wordCount.words'; + +type MdxFilterInput = { + readonly body: InputMaybe; + readonly children: InputMaybe; + readonly excerpt: InputMaybe; + readonly fileAbsolutePath: InputMaybe; + readonly frontmatter: InputMaybe; + readonly headings: InputMaybe; + readonly html: InputMaybe; + readonly id: InputMaybe; + readonly internal: InputMaybe; + readonly mdxAST: InputMaybe; + readonly parent: InputMaybe; + readonly rawBody: InputMaybe; + readonly slug: InputMaybe; + readonly tableOfContents: InputMaybe; + readonly timeToRead: InputMaybe; + readonly wordCount: InputMaybe; +}; + +type MdxFrontmatter = { + readonly title: Scalars['String']; +}; + +type MdxFrontmatterFilterInput = { + readonly title: InputMaybe; +}; + +type MdxGroupConnection = { + readonly distinct: ReadonlyArray; + readonly edges: ReadonlyArray; + readonly field: Scalars['String']; + readonly fieldValue: Maybe; + readonly group: ReadonlyArray; + readonly max: Maybe; + readonly min: Maybe; + readonly nodes: ReadonlyArray; + readonly pageInfo: PageInfo; + readonly sum: Maybe; + readonly totalCount: Scalars['Int']; +}; + + +type MdxGroupConnection_distinctArgs = { + field: MdxFieldsEnum; +}; + + +type MdxGroupConnection_groupArgs = { + field: MdxFieldsEnum; + limit: InputMaybe; + skip: InputMaybe; +}; + + +type MdxGroupConnection_maxArgs = { + field: MdxFieldsEnum; +}; + + +type MdxGroupConnection_minArgs = { + field: MdxFieldsEnum; +}; + + +type MdxGroupConnection_sumArgs = { + field: MdxFieldsEnum; +}; + +type MdxHeadingMdx = { + readonly depth: Maybe; + readonly value: Maybe; +}; + +type MdxHeadingMdxFilterInput = { + readonly depth: InputMaybe; + readonly value: InputMaybe; +}; + +type MdxHeadingMdxFilterListInput = { + readonly elemMatch: InputMaybe; +}; + +type MdxSortInput = { + readonly fields: InputMaybe>>; + readonly order: InputMaybe>>; +}; + +type MdxWordCount = { + readonly paragraphs: Maybe; + readonly sentences: Maybe; + readonly words: Maybe; +}; + +type MdxWordCountFilterInput = { + readonly paragraphs: InputMaybe; + readonly sentences: InputMaybe; + readonly words: InputMaybe; +}; + +/** Node Interface */ +type Node = { + readonly children: ReadonlyArray; + readonly id: Scalars['ID']; + readonly internal: Internal; + readonly parent: Maybe; +}; + +type NodeFilterInput = { + readonly children: InputMaybe; + readonly id: InputMaybe; + readonly internal: InputMaybe; + readonly parent: InputMaybe; +}; + +type NodeFilterListInput = { + readonly elemMatch: InputMaybe; +}; + +type PNGOptions = { + readonly compressionSpeed: InputMaybe; + readonly quality: InputMaybe; +}; + +type PageInfo = { + readonly currentPage: Scalars['Int']; + readonly hasNextPage: Scalars['Boolean']; + readonly hasPreviousPage: Scalars['Boolean']; + readonly itemCount: Scalars['Int']; + readonly pageCount: Scalars['Int']; + readonly perPage: Maybe; + readonly totalCount: Scalars['Int']; +}; + +type Potrace = { + readonly alphaMax: InputMaybe; + readonly background: InputMaybe; + readonly blackOnWhite: InputMaybe; + readonly color: InputMaybe; + readonly optCurve: InputMaybe; + readonly optTolerance: InputMaybe; + readonly threshold: InputMaybe; + readonly turdSize: InputMaybe; + readonly turnPolicy: InputMaybe; +}; + +type PotraceTurnPolicy = + | 'black' + | 'left' + | 'majority' + | 'minority' + | 'right' + | 'white'; + +type Query = { + readonly allDirectory: DirectoryConnection; + readonly allFile: FileConnection; + readonly allImageSharp: ImageSharpConnection; + readonly allMdx: MdxConnection; + readonly allSite: SiteConnection; + readonly allSiteBuildMetadata: SiteBuildMetadataConnection; + readonly allSiteFunction: SiteFunctionConnection; + readonly allSitePage: SitePageConnection; + readonly allSitePlugin: SitePluginConnection; + readonly directory: Maybe; + readonly file: Maybe; + readonly imageSharp: Maybe; + readonly mdx: Maybe; + readonly site: Maybe; + readonly siteBuildMetadata: Maybe; + readonly siteFunction: Maybe; + readonly sitePage: Maybe; + readonly sitePlugin: Maybe; +}; + + +type Query_allDirectoryArgs = { + filter: InputMaybe; + limit: InputMaybe; + skip: InputMaybe; + sort: InputMaybe; +}; + + +type Query_allFileArgs = { + filter: InputMaybe; + limit: InputMaybe; + skip: InputMaybe; + sort: InputMaybe; +}; + + +type Query_allImageSharpArgs = { + filter: InputMaybe; + limit: InputMaybe; + skip: InputMaybe; + sort: InputMaybe; +}; + + +type Query_allMdxArgs = { + filter: InputMaybe; + limit: InputMaybe; + skip: InputMaybe; + sort: InputMaybe; +}; + + +type Query_allSiteArgs = { + filter: InputMaybe; + limit: InputMaybe; + skip: InputMaybe; + sort: InputMaybe; +}; + + +type Query_allSiteBuildMetadataArgs = { + filter: InputMaybe; + limit: InputMaybe; + skip: InputMaybe; + sort: InputMaybe; +}; + + +type Query_allSiteFunctionArgs = { + filter: InputMaybe; + limit: InputMaybe; + skip: InputMaybe; + sort: InputMaybe; +}; + + +type Query_allSitePageArgs = { + filter: InputMaybe; + limit: InputMaybe; + skip: InputMaybe; + sort: InputMaybe; +}; + + +type Query_allSitePluginArgs = { + filter: InputMaybe; + limit: InputMaybe; + skip: InputMaybe; + sort: InputMaybe; +}; + + +type Query_directoryArgs = { + absolutePath: InputMaybe; + accessTime: InputMaybe; + atime: InputMaybe; + atimeMs: InputMaybe; + base: InputMaybe; + birthTime: InputMaybe; + birthtime: InputMaybe; + birthtimeMs: InputMaybe; + changeTime: InputMaybe; + children: InputMaybe; + ctime: InputMaybe; + ctimeMs: InputMaybe; + dev: InputMaybe; + dir: InputMaybe; + ext: InputMaybe; + extension: InputMaybe; + gid: InputMaybe; + id: InputMaybe; + ino: InputMaybe; + internal: InputMaybe; + mode: InputMaybe; + modifiedTime: InputMaybe; + mtime: InputMaybe; + mtimeMs: InputMaybe; + name: InputMaybe; + nlink: InputMaybe; + parent: InputMaybe; + prettySize: InputMaybe; + rdev: InputMaybe; + relativeDirectory: InputMaybe; + relativePath: InputMaybe; + root: InputMaybe; + size: InputMaybe; + sourceInstanceName: InputMaybe; + uid: InputMaybe; +}; + + +type Query_fileArgs = { + absolutePath: InputMaybe; + accessTime: InputMaybe; + atime: InputMaybe; + atimeMs: InputMaybe; + base: InputMaybe; + birthTime: InputMaybe; + birthtime: InputMaybe; + birthtimeMs: InputMaybe; + blksize: InputMaybe; + blocks: InputMaybe; + changeTime: InputMaybe; + childImageSharp: InputMaybe; + children: InputMaybe; + childrenImageSharp: InputMaybe; + ctime: InputMaybe; + ctimeMs: InputMaybe; + dev: InputMaybe; + dir: InputMaybe; + ext: InputMaybe; + extension: InputMaybe; + gid: InputMaybe; + id: InputMaybe; + ino: InputMaybe; + internal: InputMaybe; + mode: InputMaybe; + modifiedTime: InputMaybe; + mtime: InputMaybe; + mtimeMs: InputMaybe; + name: InputMaybe; + nlink: InputMaybe; + parent: InputMaybe; + prettySize: InputMaybe; + publicURL: InputMaybe; + rdev: InputMaybe; + relativeDirectory: InputMaybe; + relativePath: InputMaybe; + root: InputMaybe; + size: InputMaybe; + sourceInstanceName: InputMaybe; + uid: InputMaybe; +}; + + +type Query_imageSharpArgs = { + children: InputMaybe; + fixed: InputMaybe; + fluid: InputMaybe; + gatsbyImageData: InputMaybe; + id: InputMaybe; + internal: InputMaybe; + original: InputMaybe; + parent: InputMaybe; + resize: InputMaybe; +}; + + +type Query_mdxArgs = { + body: InputMaybe; + children: InputMaybe; + excerpt: InputMaybe; + fileAbsolutePath: InputMaybe; + frontmatter: InputMaybe; + headings: InputMaybe; + html: InputMaybe; + id: InputMaybe; + internal: InputMaybe; + mdxAST: InputMaybe; + parent: InputMaybe; + rawBody: InputMaybe; + slug: InputMaybe; + tableOfContents: InputMaybe; + timeToRead: InputMaybe; + wordCount: InputMaybe; +}; + + +type Query_siteArgs = { + buildTime: InputMaybe; + children: InputMaybe; + id: InputMaybe; + internal: InputMaybe; + jsxRuntime: InputMaybe; + parent: InputMaybe; + pathPrefix: InputMaybe; + polyfill: InputMaybe; + siteMetadata: InputMaybe; + trailingSlash: InputMaybe; +}; + + +type Query_siteBuildMetadataArgs = { + buildTime: InputMaybe; + children: InputMaybe; + id: InputMaybe; + internal: InputMaybe; + parent: InputMaybe; +}; + + +type Query_siteFunctionArgs = { + absoluteCompiledFilePath: InputMaybe; + children: InputMaybe; + functionRoute: InputMaybe; + id: InputMaybe; + internal: InputMaybe; + matchPath: InputMaybe; + originalAbsoluteFilePath: InputMaybe; + originalRelativeFilePath: InputMaybe; + parent: InputMaybe; + pluginName: InputMaybe; + relativeCompiledFilePath: InputMaybe; +}; + + +type Query_sitePageArgs = { + children: InputMaybe; + component: InputMaybe; + componentChunkName: InputMaybe; + id: InputMaybe; + internal: InputMaybe; + internalComponentName: InputMaybe; + matchPath: InputMaybe; + pageContext: InputMaybe; + parent: InputMaybe; + path: InputMaybe; + pluginCreator: InputMaybe; +}; + + +type Query_sitePluginArgs = { + browserAPIs: InputMaybe; + children: InputMaybe; + id: InputMaybe; + internal: InputMaybe; + name: InputMaybe; + nodeAPIs: InputMaybe; + packageJson: InputMaybe; + parent: InputMaybe; + pluginFilepath: InputMaybe; + pluginOptions: InputMaybe; + resolve: InputMaybe; + ssrAPIs: InputMaybe; + version: InputMaybe; +}; + +type Site = Node & { + readonly buildTime: Maybe; + readonly children: ReadonlyArray; + readonly id: Scalars['ID']; + readonly internal: Internal; + readonly jsxRuntime: Maybe; + readonly parent: Maybe; + readonly pathPrefix: Maybe; + readonly polyfill: Maybe; + readonly siteMetadata: Maybe; + readonly trailingSlash: Maybe; +}; + + +type Site_buildTimeArgs = { + difference: InputMaybe; + formatString: InputMaybe; + fromNow: InputMaybe; + locale: InputMaybe; +}; + +type SiteBuildMetadata = Node & { + readonly buildTime: Maybe; + readonly children: ReadonlyArray; + readonly id: Scalars['ID']; + readonly internal: Internal; + readonly parent: Maybe; +}; + + +type SiteBuildMetadata_buildTimeArgs = { + difference: InputMaybe; + formatString: InputMaybe; + fromNow: InputMaybe; + locale: InputMaybe; +}; + +type SiteBuildMetadataConnection = { + readonly distinct: ReadonlyArray; + readonly edges: ReadonlyArray; + readonly group: ReadonlyArray; + readonly max: Maybe; + readonly min: Maybe; + readonly nodes: ReadonlyArray; + readonly pageInfo: PageInfo; + readonly sum: Maybe; + readonly totalCount: Scalars['Int']; +}; + + +type SiteBuildMetadataConnection_distinctArgs = { + field: SiteBuildMetadataFieldsEnum; +}; + + +type SiteBuildMetadataConnection_groupArgs = { + field: SiteBuildMetadataFieldsEnum; + limit: InputMaybe; + skip: InputMaybe; +}; + + +type SiteBuildMetadataConnection_maxArgs = { + field: SiteBuildMetadataFieldsEnum; +}; + + +type SiteBuildMetadataConnection_minArgs = { + field: SiteBuildMetadataFieldsEnum; +}; + + +type SiteBuildMetadataConnection_sumArgs = { + field: SiteBuildMetadataFieldsEnum; +}; + +type SiteBuildMetadataEdge = { + readonly next: Maybe; + readonly node: SiteBuildMetadata; + readonly previous: Maybe; +}; + +type SiteBuildMetadataFieldsEnum = + | 'buildTime' + | 'children' + | 'children.children' + | 'children.children.children' + | 'children.children.children.children' + | 'children.children.children.id' + | 'children.children.id' + | 'children.children.internal.content' + | 'children.children.internal.contentDigest' + | 'children.children.internal.description' + | 'children.children.internal.fieldOwners' + | 'children.children.internal.ignoreType' + | 'children.children.internal.mediaType' + | 'children.children.internal.owner' + | 'children.children.internal.type' + | 'children.children.parent.children' + | 'children.children.parent.id' + | 'children.id' + | 'children.internal.content' + | 'children.internal.contentDigest' + | 'children.internal.description' + | 'children.internal.fieldOwners' + | 'children.internal.ignoreType' + | 'children.internal.mediaType' + | 'children.internal.owner' + | 'children.internal.type' + | 'children.parent.children' + | 'children.parent.children.children' + | 'children.parent.children.id' + | 'children.parent.id' + | 'children.parent.internal.content' + | 'children.parent.internal.contentDigest' + | 'children.parent.internal.description' + | 'children.parent.internal.fieldOwners' + | 'children.parent.internal.ignoreType' + | 'children.parent.internal.mediaType' + | 'children.parent.internal.owner' + | 'children.parent.internal.type' + | 'children.parent.parent.children' + | 'children.parent.parent.id' + | 'id' + | 'internal.content' + | 'internal.contentDigest' + | 'internal.description' + | 'internal.fieldOwners' + | 'internal.ignoreType' + | 'internal.mediaType' + | 'internal.owner' + | 'internal.type' + | 'parent.children' + | 'parent.children.children' + | 'parent.children.children.children' + | 'parent.children.children.id' + | 'parent.children.id' + | 'parent.children.internal.content' + | 'parent.children.internal.contentDigest' + | 'parent.children.internal.description' + | 'parent.children.internal.fieldOwners' + | 'parent.children.internal.ignoreType' + | 'parent.children.internal.mediaType' + | 'parent.children.internal.owner' + | 'parent.children.internal.type' + | 'parent.children.parent.children' + | 'parent.children.parent.id' + | 'parent.id' + | 'parent.internal.content' + | 'parent.internal.contentDigest' + | 'parent.internal.description' + | 'parent.internal.fieldOwners' + | 'parent.internal.ignoreType' + | 'parent.internal.mediaType' + | 'parent.internal.owner' + | 'parent.internal.type' + | 'parent.parent.children' + | 'parent.parent.children.children' + | 'parent.parent.children.id' + | 'parent.parent.id' + | 'parent.parent.internal.content' + | 'parent.parent.internal.contentDigest' + | 'parent.parent.internal.description' + | 'parent.parent.internal.fieldOwners' + | 'parent.parent.internal.ignoreType' + | 'parent.parent.internal.mediaType' + | 'parent.parent.internal.owner' + | 'parent.parent.internal.type' + | 'parent.parent.parent.children' + | 'parent.parent.parent.id'; + +type SiteBuildMetadataFilterInput = { + readonly buildTime: InputMaybe; + readonly children: InputMaybe; + readonly id: InputMaybe; + readonly internal: InputMaybe; + readonly parent: InputMaybe; +}; + +type SiteBuildMetadataGroupConnection = { + readonly distinct: ReadonlyArray; + readonly edges: ReadonlyArray; + readonly field: Scalars['String']; + readonly fieldValue: Maybe; + readonly group: ReadonlyArray; + readonly max: Maybe; + readonly min: Maybe; + readonly nodes: ReadonlyArray; + readonly pageInfo: PageInfo; + readonly sum: Maybe; + readonly totalCount: Scalars['Int']; +}; + + +type SiteBuildMetadataGroupConnection_distinctArgs = { + field: SiteBuildMetadataFieldsEnum; +}; + + +type SiteBuildMetadataGroupConnection_groupArgs = { + field: SiteBuildMetadataFieldsEnum; + limit: InputMaybe; + skip: InputMaybe; +}; + + +type SiteBuildMetadataGroupConnection_maxArgs = { + field: SiteBuildMetadataFieldsEnum; +}; + + +type SiteBuildMetadataGroupConnection_minArgs = { + field: SiteBuildMetadataFieldsEnum; +}; + + +type SiteBuildMetadataGroupConnection_sumArgs = { + field: SiteBuildMetadataFieldsEnum; +}; + +type SiteBuildMetadataSortInput = { + readonly fields: InputMaybe>>; + readonly order: InputMaybe>>; +}; + +type SiteConnection = { + readonly distinct: ReadonlyArray; + readonly edges: ReadonlyArray; + readonly group: ReadonlyArray; + readonly max: Maybe; + readonly min: Maybe; + readonly nodes: ReadonlyArray; + readonly pageInfo: PageInfo; + readonly sum: Maybe; + readonly totalCount: Scalars['Int']; +}; + + +type SiteConnection_distinctArgs = { + field: SiteFieldsEnum; +}; + + +type SiteConnection_groupArgs = { + field: SiteFieldsEnum; + limit: InputMaybe; + skip: InputMaybe; +}; + + +type SiteConnection_maxArgs = { + field: SiteFieldsEnum; +}; + + +type SiteConnection_minArgs = { + field: SiteFieldsEnum; +}; + + +type SiteConnection_sumArgs = { + field: SiteFieldsEnum; +}; + +type SiteEdge = { + readonly next: Maybe; + readonly node: Site; + readonly previous: Maybe; +}; + +type SiteFieldsEnum = + | 'buildTime' + | 'children' + | 'children.children' + | 'children.children.children' + | 'children.children.children.children' + | 'children.children.children.id' + | 'children.children.id' + | 'children.children.internal.content' + | 'children.children.internal.contentDigest' + | 'children.children.internal.description' + | 'children.children.internal.fieldOwners' + | 'children.children.internal.ignoreType' + | 'children.children.internal.mediaType' + | 'children.children.internal.owner' + | 'children.children.internal.type' + | 'children.children.parent.children' + | 'children.children.parent.id' + | 'children.id' + | 'children.internal.content' + | 'children.internal.contentDigest' + | 'children.internal.description' + | 'children.internal.fieldOwners' + | 'children.internal.ignoreType' + | 'children.internal.mediaType' + | 'children.internal.owner' + | 'children.internal.type' + | 'children.parent.children' + | 'children.parent.children.children' + | 'children.parent.children.id' + | 'children.parent.id' + | 'children.parent.internal.content' + | 'children.parent.internal.contentDigest' + | 'children.parent.internal.description' + | 'children.parent.internal.fieldOwners' + | 'children.parent.internal.ignoreType' + | 'children.parent.internal.mediaType' + | 'children.parent.internal.owner' + | 'children.parent.internal.type' + | 'children.parent.parent.children' + | 'children.parent.parent.id' + | 'id' + | 'internal.content' + | 'internal.contentDigest' + | 'internal.description' + | 'internal.fieldOwners' + | 'internal.ignoreType' + | 'internal.mediaType' + | 'internal.owner' + | 'internal.type' + | 'jsxRuntime' + | 'parent.children' + | 'parent.children.children' + | 'parent.children.children.children' + | 'parent.children.children.id' + | 'parent.children.id' + | 'parent.children.internal.content' + | 'parent.children.internal.contentDigest' + | 'parent.children.internal.description' + | 'parent.children.internal.fieldOwners' + | 'parent.children.internal.ignoreType' + | 'parent.children.internal.mediaType' + | 'parent.children.internal.owner' + | 'parent.children.internal.type' + | 'parent.children.parent.children' + | 'parent.children.parent.id' + | 'parent.id' + | 'parent.internal.content' + | 'parent.internal.contentDigest' + | 'parent.internal.description' + | 'parent.internal.fieldOwners' + | 'parent.internal.ignoreType' + | 'parent.internal.mediaType' + | 'parent.internal.owner' + | 'parent.internal.type' + | 'parent.parent.children' + | 'parent.parent.children.children' + | 'parent.parent.children.id' + | 'parent.parent.id' + | 'parent.parent.internal.content' + | 'parent.parent.internal.contentDigest' + | 'parent.parent.internal.description' + | 'parent.parent.internal.fieldOwners' + | 'parent.parent.internal.ignoreType' + | 'parent.parent.internal.mediaType' + | 'parent.parent.internal.owner' + | 'parent.parent.internal.type' + | 'parent.parent.parent.children' + | 'parent.parent.parent.id' + | 'pathPrefix' + | 'polyfill' + | 'siteMetadata.description' + | 'siteMetadata.title' + | 'trailingSlash'; + +type SiteFilterInput = { + readonly buildTime: InputMaybe; + readonly children: InputMaybe; + readonly id: InputMaybe; + readonly internal: InputMaybe; + readonly jsxRuntime: InputMaybe; + readonly parent: InputMaybe; + readonly pathPrefix: InputMaybe; + readonly polyfill: InputMaybe; + readonly siteMetadata: InputMaybe; + readonly trailingSlash: InputMaybe; +}; + +type SiteFunction = Node & { + readonly absoluteCompiledFilePath: Scalars['String']; + readonly children: ReadonlyArray; + readonly functionRoute: Scalars['String']; + readonly id: Scalars['ID']; + readonly internal: Internal; + readonly matchPath: Maybe; + readonly originalAbsoluteFilePath: Scalars['String']; + readonly originalRelativeFilePath: Scalars['String']; + readonly parent: Maybe; + readonly pluginName: Scalars['String']; + readonly relativeCompiledFilePath: Scalars['String']; +}; + +type SiteFunctionConnection = { + readonly distinct: ReadonlyArray; + readonly edges: ReadonlyArray; + readonly group: ReadonlyArray; + readonly max: Maybe; + readonly min: Maybe; + readonly nodes: ReadonlyArray; + readonly pageInfo: PageInfo; + readonly sum: Maybe; + readonly totalCount: Scalars['Int']; +}; + + +type SiteFunctionConnection_distinctArgs = { + field: SiteFunctionFieldsEnum; +}; + + +type SiteFunctionConnection_groupArgs = { + field: SiteFunctionFieldsEnum; + limit: InputMaybe; + skip: InputMaybe; +}; + + +type SiteFunctionConnection_maxArgs = { + field: SiteFunctionFieldsEnum; +}; + + +type SiteFunctionConnection_minArgs = { + field: SiteFunctionFieldsEnum; +}; + + +type SiteFunctionConnection_sumArgs = { + field: SiteFunctionFieldsEnum; +}; + +type SiteFunctionEdge = { + readonly next: Maybe; + readonly node: SiteFunction; + readonly previous: Maybe; +}; + +type SiteFunctionFieldsEnum = + | 'absoluteCompiledFilePath' + | 'children' + | 'children.children' + | 'children.children.children' + | 'children.children.children.children' + | 'children.children.children.id' + | 'children.children.id' + | 'children.children.internal.content' + | 'children.children.internal.contentDigest' + | 'children.children.internal.description' + | 'children.children.internal.fieldOwners' + | 'children.children.internal.ignoreType' + | 'children.children.internal.mediaType' + | 'children.children.internal.owner' + | 'children.children.internal.type' + | 'children.children.parent.children' + | 'children.children.parent.id' + | 'children.id' + | 'children.internal.content' + | 'children.internal.contentDigest' + | 'children.internal.description' + | 'children.internal.fieldOwners' + | 'children.internal.ignoreType' + | 'children.internal.mediaType' + | 'children.internal.owner' + | 'children.internal.type' + | 'children.parent.children' + | 'children.parent.children.children' + | 'children.parent.children.id' + | 'children.parent.id' + | 'children.parent.internal.content' + | 'children.parent.internal.contentDigest' + | 'children.parent.internal.description' + | 'children.parent.internal.fieldOwners' + | 'children.parent.internal.ignoreType' + | 'children.parent.internal.mediaType' + | 'children.parent.internal.owner' + | 'children.parent.internal.type' + | 'children.parent.parent.children' + | 'children.parent.parent.id' + | 'functionRoute' + | 'id' + | 'internal.content' + | 'internal.contentDigest' + | 'internal.description' + | 'internal.fieldOwners' + | 'internal.ignoreType' + | 'internal.mediaType' + | 'internal.owner' + | 'internal.type' + | 'matchPath' + | 'originalAbsoluteFilePath' + | 'originalRelativeFilePath' + | 'parent.children' + | 'parent.children.children' + | 'parent.children.children.children' + | 'parent.children.children.id' + | 'parent.children.id' + | 'parent.children.internal.content' + | 'parent.children.internal.contentDigest' + | 'parent.children.internal.description' + | 'parent.children.internal.fieldOwners' + | 'parent.children.internal.ignoreType' + | 'parent.children.internal.mediaType' + | 'parent.children.internal.owner' + | 'parent.children.internal.type' + | 'parent.children.parent.children' + | 'parent.children.parent.id' + | 'parent.id' + | 'parent.internal.content' + | 'parent.internal.contentDigest' + | 'parent.internal.description' + | 'parent.internal.fieldOwners' + | 'parent.internal.ignoreType' + | 'parent.internal.mediaType' + | 'parent.internal.owner' + | 'parent.internal.type' + | 'parent.parent.children' + | 'parent.parent.children.children' + | 'parent.parent.children.id' + | 'parent.parent.id' + | 'parent.parent.internal.content' + | 'parent.parent.internal.contentDigest' + | 'parent.parent.internal.description' + | 'parent.parent.internal.fieldOwners' + | 'parent.parent.internal.ignoreType' + | 'parent.parent.internal.mediaType' + | 'parent.parent.internal.owner' + | 'parent.parent.internal.type' + | 'parent.parent.parent.children' + | 'parent.parent.parent.id' + | 'pluginName' + | 'relativeCompiledFilePath'; + +type SiteFunctionFilterInput = { + readonly absoluteCompiledFilePath: InputMaybe; + readonly children: InputMaybe; + readonly functionRoute: InputMaybe; + readonly id: InputMaybe; + readonly internal: InputMaybe; + readonly matchPath: InputMaybe; + readonly originalAbsoluteFilePath: InputMaybe; + readonly originalRelativeFilePath: InputMaybe; + readonly parent: InputMaybe; + readonly pluginName: InputMaybe; + readonly relativeCompiledFilePath: InputMaybe; +}; + +type SiteFunctionGroupConnection = { + readonly distinct: ReadonlyArray; + readonly edges: ReadonlyArray; + readonly field: Scalars['String']; + readonly fieldValue: Maybe; + readonly group: ReadonlyArray; + readonly max: Maybe; + readonly min: Maybe; + readonly nodes: ReadonlyArray; + readonly pageInfo: PageInfo; + readonly sum: Maybe; + readonly totalCount: Scalars['Int']; +}; + + +type SiteFunctionGroupConnection_distinctArgs = { + field: SiteFunctionFieldsEnum; +}; + + +type SiteFunctionGroupConnection_groupArgs = { + field: SiteFunctionFieldsEnum; + limit: InputMaybe; + skip: InputMaybe; +}; + + +type SiteFunctionGroupConnection_maxArgs = { + field: SiteFunctionFieldsEnum; +}; + + +type SiteFunctionGroupConnection_minArgs = { + field: SiteFunctionFieldsEnum; +}; + + +type SiteFunctionGroupConnection_sumArgs = { + field: SiteFunctionFieldsEnum; +}; + +type SiteFunctionSortInput = { + readonly fields: InputMaybe>>; + readonly order: InputMaybe>>; +}; + +type SiteGroupConnection = { + readonly distinct: ReadonlyArray; + readonly edges: ReadonlyArray; + readonly field: Scalars['String']; + readonly fieldValue: Maybe; + readonly group: ReadonlyArray; + readonly max: Maybe; + readonly min: Maybe; + readonly nodes: ReadonlyArray; + readonly pageInfo: PageInfo; + readonly sum: Maybe; + readonly totalCount: Scalars['Int']; +}; + + +type SiteGroupConnection_distinctArgs = { + field: SiteFieldsEnum; +}; + + +type SiteGroupConnection_groupArgs = { + field: SiteFieldsEnum; + limit: InputMaybe; + skip: InputMaybe; +}; + + +type SiteGroupConnection_maxArgs = { + field: SiteFieldsEnum; +}; + + +type SiteGroupConnection_minArgs = { + field: SiteFieldsEnum; +}; + + +type SiteGroupConnection_sumArgs = { + field: SiteFieldsEnum; +}; + +type SitePage = Node & { + readonly children: ReadonlyArray; + readonly component: Scalars['String']; + readonly componentChunkName: Scalars['String']; + readonly id: Scalars['ID']; + readonly internal: Internal; + readonly internalComponentName: Scalars['String']; + readonly matchPath: Maybe; + readonly pageContext: Maybe; + readonly parent: Maybe; + readonly path: Scalars['String']; + readonly pluginCreator: Maybe; +}; + +type SitePageConnection = { + readonly distinct: ReadonlyArray; + readonly edges: ReadonlyArray; + readonly group: ReadonlyArray; + readonly max: Maybe; + readonly min: Maybe; + readonly nodes: ReadonlyArray; + readonly pageInfo: PageInfo; + readonly sum: Maybe; + readonly totalCount: Scalars['Int']; +}; + + +type SitePageConnection_distinctArgs = { + field: SitePageFieldsEnum; +}; + + +type SitePageConnection_groupArgs = { + field: SitePageFieldsEnum; + limit: InputMaybe; + skip: InputMaybe; +}; + + +type SitePageConnection_maxArgs = { + field: SitePageFieldsEnum; +}; + + +type SitePageConnection_minArgs = { + field: SitePageFieldsEnum; +}; + + +type SitePageConnection_sumArgs = { + field: SitePageFieldsEnum; +}; + +type SitePageEdge = { + readonly next: Maybe; + readonly node: SitePage; + readonly previous: Maybe; +}; + +type SitePageFieldsEnum = + | 'children' + | 'children.children' + | 'children.children.children' + | 'children.children.children.children' + | 'children.children.children.id' + | 'children.children.id' + | 'children.children.internal.content' + | 'children.children.internal.contentDigest' + | 'children.children.internal.description' + | 'children.children.internal.fieldOwners' + | 'children.children.internal.ignoreType' + | 'children.children.internal.mediaType' + | 'children.children.internal.owner' + | 'children.children.internal.type' + | 'children.children.parent.children' + | 'children.children.parent.id' + | 'children.id' + | 'children.internal.content' + | 'children.internal.contentDigest' + | 'children.internal.description' + | 'children.internal.fieldOwners' + | 'children.internal.ignoreType' + | 'children.internal.mediaType' + | 'children.internal.owner' + | 'children.internal.type' + | 'children.parent.children' + | 'children.parent.children.children' + | 'children.parent.children.id' + | 'children.parent.id' + | 'children.parent.internal.content' + | 'children.parent.internal.contentDigest' + | 'children.parent.internal.description' + | 'children.parent.internal.fieldOwners' + | 'children.parent.internal.ignoreType' + | 'children.parent.internal.mediaType' + | 'children.parent.internal.owner' + | 'children.parent.internal.type' + | 'children.parent.parent.children' + | 'children.parent.parent.id' + | 'component' + | 'componentChunkName' + | 'id' + | 'internalComponentName' + | 'internal.content' + | 'internal.contentDigest' + | 'internal.description' + | 'internal.fieldOwners' + | 'internal.ignoreType' + | 'internal.mediaType' + | 'internal.owner' + | 'internal.type' + | 'matchPath' + | 'pageContext' + | 'parent.children' + | 'parent.children.children' + | 'parent.children.children.children' + | 'parent.children.children.id' + | 'parent.children.id' + | 'parent.children.internal.content' + | 'parent.children.internal.contentDigest' + | 'parent.children.internal.description' + | 'parent.children.internal.fieldOwners' + | 'parent.children.internal.ignoreType' + | 'parent.children.internal.mediaType' + | 'parent.children.internal.owner' + | 'parent.children.internal.type' + | 'parent.children.parent.children' + | 'parent.children.parent.id' + | 'parent.id' + | 'parent.internal.content' + | 'parent.internal.contentDigest' + | 'parent.internal.description' + | 'parent.internal.fieldOwners' + | 'parent.internal.ignoreType' + | 'parent.internal.mediaType' + | 'parent.internal.owner' + | 'parent.internal.type' + | 'parent.parent.children' + | 'parent.parent.children.children' + | 'parent.parent.children.id' + | 'parent.parent.id' + | 'parent.parent.internal.content' + | 'parent.parent.internal.contentDigest' + | 'parent.parent.internal.description' + | 'parent.parent.internal.fieldOwners' + | 'parent.parent.internal.ignoreType' + | 'parent.parent.internal.mediaType' + | 'parent.parent.internal.owner' + | 'parent.parent.internal.type' + | 'parent.parent.parent.children' + | 'parent.parent.parent.id' + | 'path' + | 'pluginCreator.browserAPIs' + | 'pluginCreator.children' + | 'pluginCreator.children.children' + | 'pluginCreator.children.children.children' + | 'pluginCreator.children.children.id' + | 'pluginCreator.children.id' + | 'pluginCreator.children.internal.content' + | 'pluginCreator.children.internal.contentDigest' + | 'pluginCreator.children.internal.description' + | 'pluginCreator.children.internal.fieldOwners' + | 'pluginCreator.children.internal.ignoreType' + | 'pluginCreator.children.internal.mediaType' + | 'pluginCreator.children.internal.owner' + | 'pluginCreator.children.internal.type' + | 'pluginCreator.children.parent.children' + | 'pluginCreator.children.parent.id' + | 'pluginCreator.id' + | 'pluginCreator.internal.content' + | 'pluginCreator.internal.contentDigest' + | 'pluginCreator.internal.description' + | 'pluginCreator.internal.fieldOwners' + | 'pluginCreator.internal.ignoreType' + | 'pluginCreator.internal.mediaType' + | 'pluginCreator.internal.owner' + | 'pluginCreator.internal.type' + | 'pluginCreator.name' + | 'pluginCreator.nodeAPIs' + | 'pluginCreator.packageJson' + | 'pluginCreator.parent.children' + | 'pluginCreator.parent.children.children' + | 'pluginCreator.parent.children.id' + | 'pluginCreator.parent.id' + | 'pluginCreator.parent.internal.content' + | 'pluginCreator.parent.internal.contentDigest' + | 'pluginCreator.parent.internal.description' + | 'pluginCreator.parent.internal.fieldOwners' + | 'pluginCreator.parent.internal.ignoreType' + | 'pluginCreator.parent.internal.mediaType' + | 'pluginCreator.parent.internal.owner' + | 'pluginCreator.parent.internal.type' + | 'pluginCreator.parent.parent.children' + | 'pluginCreator.parent.parent.id' + | 'pluginCreator.pluginFilepath' + | 'pluginCreator.pluginOptions' + | 'pluginCreator.resolve' + | 'pluginCreator.ssrAPIs' + | 'pluginCreator.version'; + +type SitePageFilterInput = { + readonly children: InputMaybe; + readonly component: InputMaybe; + readonly componentChunkName: InputMaybe; + readonly id: InputMaybe; + readonly internal: InputMaybe; + readonly internalComponentName: InputMaybe; + readonly matchPath: InputMaybe; + readonly pageContext: InputMaybe; + readonly parent: InputMaybe; + readonly path: InputMaybe; + readonly pluginCreator: InputMaybe; +}; + +type SitePageGroupConnection = { + readonly distinct: ReadonlyArray; + readonly edges: ReadonlyArray; + readonly field: Scalars['String']; + readonly fieldValue: Maybe; + readonly group: ReadonlyArray; + readonly max: Maybe; + readonly min: Maybe; + readonly nodes: ReadonlyArray; + readonly pageInfo: PageInfo; + readonly sum: Maybe; + readonly totalCount: Scalars['Int']; +}; + + +type SitePageGroupConnection_distinctArgs = { + field: SitePageFieldsEnum; +}; + + +type SitePageGroupConnection_groupArgs = { + field: SitePageFieldsEnum; + limit: InputMaybe; + skip: InputMaybe; +}; + + +type SitePageGroupConnection_maxArgs = { + field: SitePageFieldsEnum; +}; + + +type SitePageGroupConnection_minArgs = { + field: SitePageFieldsEnum; +}; + + +type SitePageGroupConnection_sumArgs = { + field: SitePageFieldsEnum; +}; + +type SitePageSortInput = { + readonly fields: InputMaybe>>; + readonly order: InputMaybe>>; +}; + +type SitePlugin = Node & { + readonly browserAPIs: Maybe>>; + readonly children: ReadonlyArray; + readonly id: Scalars['ID']; + readonly internal: Internal; + readonly name: Maybe; + readonly nodeAPIs: Maybe>>; + readonly packageJson: Maybe; + readonly parent: Maybe; + readonly pluginFilepath: Maybe; + readonly pluginOptions: Maybe; + readonly resolve: Maybe; + readonly ssrAPIs: Maybe>>; + readonly version: Maybe; +}; + +type SitePluginConnection = { + readonly distinct: ReadonlyArray; + readonly edges: ReadonlyArray; + readonly group: ReadonlyArray; + readonly max: Maybe; + readonly min: Maybe; + readonly nodes: ReadonlyArray; + readonly pageInfo: PageInfo; + readonly sum: Maybe; + readonly totalCount: Scalars['Int']; +}; + + +type SitePluginConnection_distinctArgs = { + field: SitePluginFieldsEnum; +}; + + +type SitePluginConnection_groupArgs = { + field: SitePluginFieldsEnum; + limit: InputMaybe; + skip: InputMaybe; +}; + + +type SitePluginConnection_maxArgs = { + field: SitePluginFieldsEnum; +}; + + +type SitePluginConnection_minArgs = { + field: SitePluginFieldsEnum; +}; + + +type SitePluginConnection_sumArgs = { + field: SitePluginFieldsEnum; +}; + +type SitePluginEdge = { + readonly next: Maybe; + readonly node: SitePlugin; + readonly previous: Maybe; +}; + +type SitePluginFieldsEnum = + | 'browserAPIs' + | 'children' + | 'children.children' + | 'children.children.children' + | 'children.children.children.children' + | 'children.children.children.id' + | 'children.children.id' + | 'children.children.internal.content' + | 'children.children.internal.contentDigest' + | 'children.children.internal.description' + | 'children.children.internal.fieldOwners' + | 'children.children.internal.ignoreType' + | 'children.children.internal.mediaType' + | 'children.children.internal.owner' + | 'children.children.internal.type' + | 'children.children.parent.children' + | 'children.children.parent.id' + | 'children.id' + | 'children.internal.content' + | 'children.internal.contentDigest' + | 'children.internal.description' + | 'children.internal.fieldOwners' + | 'children.internal.ignoreType' + | 'children.internal.mediaType' + | 'children.internal.owner' + | 'children.internal.type' + | 'children.parent.children' + | 'children.parent.children.children' + | 'children.parent.children.id' + | 'children.parent.id' + | 'children.parent.internal.content' + | 'children.parent.internal.contentDigest' + | 'children.parent.internal.description' + | 'children.parent.internal.fieldOwners' + | 'children.parent.internal.ignoreType' + | 'children.parent.internal.mediaType' + | 'children.parent.internal.owner' + | 'children.parent.internal.type' + | 'children.parent.parent.children' + | 'children.parent.parent.id' + | 'id' + | 'internal.content' + | 'internal.contentDigest' + | 'internal.description' + | 'internal.fieldOwners' + | 'internal.ignoreType' + | 'internal.mediaType' + | 'internal.owner' + | 'internal.type' + | 'name' + | 'nodeAPIs' + | 'packageJson' + | 'parent.children' + | 'parent.children.children' + | 'parent.children.children.children' + | 'parent.children.children.id' + | 'parent.children.id' + | 'parent.children.internal.content' + | 'parent.children.internal.contentDigest' + | 'parent.children.internal.description' + | 'parent.children.internal.fieldOwners' + | 'parent.children.internal.ignoreType' + | 'parent.children.internal.mediaType' + | 'parent.children.internal.owner' + | 'parent.children.internal.type' + | 'parent.children.parent.children' + | 'parent.children.parent.id' + | 'parent.id' + | 'parent.internal.content' + | 'parent.internal.contentDigest' + | 'parent.internal.description' + | 'parent.internal.fieldOwners' + | 'parent.internal.ignoreType' + | 'parent.internal.mediaType' + | 'parent.internal.owner' + | 'parent.internal.type' + | 'parent.parent.children' + | 'parent.parent.children.children' + | 'parent.parent.children.id' + | 'parent.parent.id' + | 'parent.parent.internal.content' + | 'parent.parent.internal.contentDigest' + | 'parent.parent.internal.description' + | 'parent.parent.internal.fieldOwners' + | 'parent.parent.internal.ignoreType' + | 'parent.parent.internal.mediaType' + | 'parent.parent.internal.owner' + | 'parent.parent.internal.type' + | 'parent.parent.parent.children' + | 'parent.parent.parent.id' + | 'pluginFilepath' + | 'pluginOptions' + | 'resolve' + | 'ssrAPIs' + | 'version'; + +type SitePluginFilterInput = { + readonly browserAPIs: InputMaybe; + readonly children: InputMaybe; + readonly id: InputMaybe; + readonly internal: InputMaybe; + readonly name: InputMaybe; + readonly nodeAPIs: InputMaybe; + readonly packageJson: InputMaybe; + readonly parent: InputMaybe; + readonly pluginFilepath: InputMaybe; + readonly pluginOptions: InputMaybe; + readonly resolve: InputMaybe; + readonly ssrAPIs: InputMaybe; + readonly version: InputMaybe; +}; + +type SitePluginGroupConnection = { + readonly distinct: ReadonlyArray; + readonly edges: ReadonlyArray; + readonly field: Scalars['String']; + readonly fieldValue: Maybe; + readonly group: ReadonlyArray; + readonly max: Maybe; + readonly min: Maybe; + readonly nodes: ReadonlyArray; + readonly pageInfo: PageInfo; + readonly sum: Maybe; + readonly totalCount: Scalars['Int']; +}; + + +type SitePluginGroupConnection_distinctArgs = { + field: SitePluginFieldsEnum; +}; + + +type SitePluginGroupConnection_groupArgs = { + field: SitePluginFieldsEnum; + limit: InputMaybe; + skip: InputMaybe; +}; + + +type SitePluginGroupConnection_maxArgs = { + field: SitePluginFieldsEnum; +}; + + +type SitePluginGroupConnection_minArgs = { + field: SitePluginFieldsEnum; +}; + + +type SitePluginGroupConnection_sumArgs = { + field: SitePluginFieldsEnum; +}; + +type SitePluginSortInput = { + readonly fields: InputMaybe>>; + readonly order: InputMaybe>>; +}; + +type SiteSiteMetadata = { + readonly description: Maybe; + readonly title: Maybe; +}; + +type SiteSiteMetadataFilterInput = { + readonly description: InputMaybe; + readonly title: InputMaybe; +}; + +type SiteSortInput = { + readonly fields: InputMaybe>>; + readonly order: InputMaybe>>; +}; + +type SortOrderEnum = + | 'ASC' + | 'DESC'; + +type StringQueryOperatorInput = { + readonly eq: InputMaybe; + readonly glob: InputMaybe; + readonly in: InputMaybe>>; + readonly ne: InputMaybe; + readonly nin: InputMaybe>>; + readonly regex: InputMaybe; +}; + +type TransformOptions = { + readonly cropFocus: InputMaybe; + readonly duotone: InputMaybe; + readonly fit: InputMaybe; + readonly grayscale: InputMaybe; + readonly rotate: InputMaybe; + readonly trim: InputMaybe; +}; + +type WebPOptions = { + readonly quality: InputMaybe; +}; + +type LayoutQueryVariables = Exact<{ [key: string]: never; }>; + + +type LayoutQuery = { readonly site: { readonly siteMetadata: { readonly title: string | null } | null } | null }; + +type SeoQueryVariables = Exact<{ [key: string]: never; }>; + + +type SeoQuery = { readonly site: { readonly siteMetadata: { readonly title: string | null, readonly description: string | null } | null } | null }; + +type UsingMdxQueryVariables = Exact<{ [key: string]: never; }>; + + +type UsingMdxQuery = { readonly site: { readonly siteMetadata: { readonly title: string | null } | null } | null }; + + +} diff --git a/examples/mdx/src/components/header.tsx b/examples/mdx/src/components/header.tsx new file mode 100644 index 0000000..93f74bf --- /dev/null +++ b/examples/mdx/src/components/header.tsx @@ -0,0 +1,37 @@ +import * as React from 'react'; +import { Link } from 'gatsby'; + +type HeaderProps = { + siteTitle: string, +}; + +const Header: React.FC = ({ siteTitle }) => ( +
+
+

+ + {siteTitle} + +

+
+
+); + +export default Header; diff --git a/examples/mdx/src/components/layout.css b/examples/mdx/src/components/layout.css new file mode 100644 index 0000000..e5c4251 --- /dev/null +++ b/examples/mdx/src/components/layout.css @@ -0,0 +1,597 @@ +html { + -ms-text-size-adjust: 100%; + -webkit-text-size-adjust: 100%; + font: 112.5%/1.45em georgia, serif, sans-serif; + box-sizing: border-box; + overflow-y: scroll; +} +body { + margin: 0; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + color: hsla(0, 0%, 0%, 0.8); + font-family: georgia, serif; + font-weight: normal; + word-wrap: break-word; + font-kerning: normal; + -moz-font-feature-settings: "kern", "liga", "clig", "calt"; + -ms-font-feature-settings: "kern", "liga", "clig", "calt"; + -webkit-font-feature-settings: "kern", "liga", "clig", "calt"; + font-feature-settings: "kern", "liga", "clig", "calt"; +} +article, +aside, +details, +figcaption, +figure, +footer, +header, +main, +menu, +nav, +section, +summary { + display: block; +} +audio, +canvas, +progress, +video { + display: inline-block; +} +audio:not([controls]) { + display: none; + height: 0; +} +progress { + vertical-align: baseline; +} +[hidden], +template { + display: none; +} +a { + background-color: transparent; + -webkit-text-decoration-skip: objects; +} +a:active, +a:hover { + outline-width: 0; +} +abbr[title] { + border-bottom: 1px dotted hsla(0, 0%, 0%, 0.5); + cursor: help; + text-decoration: none; +} +b, +strong { + font-weight: inherit; + font-weight: bolder; +} +dfn { + font-style: italic; +} +h1 { + margin-left: 0; + margin-right: 0; + margin-top: 0; + padding-bottom: 0; + padding-left: 0; + padding-right: 0; + padding-top: 0; + margin-bottom: 1.45rem; + color: inherit; + font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, + Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif; + font-weight: bold; + text-rendering: optimizeLegibility; + font-size: 2.25rem; + line-height: 1.1; +} +mark { + background-color: #ff0; + color: #000; +} +small { + font-size: 80%; +} +sub, +sup { + font-size: 75%; + line-height: 0; + position: relative; + vertical-align: baseline; +} +sub { + bottom: -0.25em; +} +sup { + top: -0.5em; +} +img { + border-style: none; + max-width: 100%; + margin-left: 0; + margin-right: 0; + margin-top: 0; + padding-bottom: 0; + padding-left: 0; + padding-right: 0; + padding-top: 0; + margin-bottom: 1.45rem; +} +svg:not(:root) { + overflow: hidden; +} +code, +kbd, +pre, +samp { + font-family: monospace; + font-size: 1em; +} +figure { + margin-left: 0; + margin-right: 0; + margin-top: 0; + padding-bottom: 0; + padding-left: 0; + padding-right: 0; + padding-top: 0; + margin-bottom: 1.45rem; +} +hr { + box-sizing: content-box; + overflow: visible; + margin-left: 0; + margin-right: 0; + margin-top: 0; + padding-bottom: 0; + padding-left: 0; + padding-right: 0; + padding-top: 0; + margin-bottom: calc(1.45rem - 1px); + background: hsla(0, 0%, 0%, 0.2); + border: none; + height: 1px; +} +button, +input, +optgroup, +select, +textarea { + font: inherit; + margin: 0; +} +optgroup { + font-weight: 700; +} +button, +input { + overflow: visible; +} +button, +select { + text-transform: none; +} +[type="reset"], +[type="submit"], +button, +html [type="button"] { + -webkit-appearance: button; +} +[type="button"]::-moz-focus-inner, +[type="reset"]::-moz-focus-inner, +[type="submit"]::-moz-focus-inner, +button::-moz-focus-inner { + border-style: none; + padding: 0; +} +[type="button"]:-moz-focusring, +[type="reset"]:-moz-focusring, +[type="submit"]:-moz-focusring, +button:-moz-focusring { + outline: 1px dotted ButtonText; +} +fieldset { + border: 1px solid silver; + padding: 0.35em 0.625em 0.75em; + margin-left: 0; + margin-right: 0; + margin-top: 0; + padding-bottom: 0; + padding-left: 0; + padding-right: 0; + padding-top: 0; + margin-bottom: 1.45rem; +} +legend { + box-sizing: border-box; + color: inherit; + display: table; + max-width: 100%; + padding: 0; + white-space: normal; +} +textarea { + overflow: auto; +} +[type="checkbox"], +[type="radio"] { + box-sizing: border-box; + padding: 0; +} +[type="number"]::-webkit-inner-spin-button, +[type="number"]::-webkit-outer-spin-button { + height: auto; +} +[type="search"] { + -webkit-appearance: textfield; + outline-offset: -2px; +} +[type="search"]::-webkit-search-cancel-button, +[type="search"]::-webkit-search-decoration { + -webkit-appearance: none; +} +::-webkit-input-placeholder { + color: inherit; + opacity: 0.54; +} +::-webkit-file-upload-button { + -webkit-appearance: button; + font: inherit; +} +* { + box-sizing: inherit; +} +*:before { + box-sizing: inherit; +} +*:after { + box-sizing: inherit; +} +h2 { + margin-left: 0; + margin-right: 0; + margin-top: 0; + padding-bottom: 0; + padding-left: 0; + padding-right: 0; + padding-top: 0; + margin-bottom: 1.45rem; + color: inherit; + font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, + Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif; + font-weight: bold; + text-rendering: optimizeLegibility; + font-size: 1.62671rem; + line-height: 1.1; +} +h3 { + margin-left: 0; + margin-right: 0; + margin-top: 0; + padding-bottom: 0; + padding-left: 0; + padding-right: 0; + padding-top: 0; + margin-bottom: 1.45rem; + color: inherit; + font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, + Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif; + font-weight: bold; + text-rendering: optimizeLegibility; + font-size: 1.38316rem; + line-height: 1.1; +} +h4 { + margin-left: 0; + margin-right: 0; + margin-top: 0; + padding-bottom: 0; + padding-left: 0; + padding-right: 0; + padding-top: 0; + margin-bottom: 1.45rem; + color: inherit; + font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, + Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif; + font-weight: bold; + text-rendering: optimizeLegibility; + font-size: 1rem; + line-height: 1.1; +} +h5 { + margin-left: 0; + margin-right: 0; + margin-top: 0; + padding-bottom: 0; + padding-left: 0; + padding-right: 0; + padding-top: 0; + margin-bottom: 1.45rem; + color: inherit; + font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, + Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif; + font-weight: bold; + text-rendering: optimizeLegibility; + font-size: 0.85028rem; + line-height: 1.1; +} +h6 { + margin-left: 0; + margin-right: 0; + margin-top: 0; + padding-bottom: 0; + padding-left: 0; + padding-right: 0; + padding-top: 0; + margin-bottom: 1.45rem; + color: inherit; + font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, + Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif; + font-weight: bold; + text-rendering: optimizeLegibility; + font-size: 0.78405rem; + line-height: 1.1; +} +hgroup { + margin-left: 0; + margin-right: 0; + margin-top: 0; + padding-bottom: 0; + padding-left: 0; + padding-right: 0; + padding-top: 0; + margin-bottom: 1.45rem; +} +ul { + margin-left: 1.45rem; + margin-right: 0; + margin-top: 0; + padding-bottom: 0; + padding-left: 0; + padding-right: 0; + padding-top: 0; + margin-bottom: 1.45rem; + list-style-position: outside; + list-style-image: none; +} +ol { + margin-left: 1.45rem; + margin-right: 0; + margin-top: 0; + padding-bottom: 0; + padding-left: 0; + padding-right: 0; + padding-top: 0; + margin-bottom: 1.45rem; + list-style-position: outside; + list-style-image: none; +} +dl { + margin-left: 0; + margin-right: 0; + margin-top: 0; + padding-bottom: 0; + padding-left: 0; + padding-right: 0; + padding-top: 0; + margin-bottom: 1.45rem; +} +dd { + margin-left: 0; + margin-right: 0; + margin-top: 0; + padding-bottom: 0; + padding-left: 0; + padding-right: 0; + padding-top: 0; + margin-bottom: 1.45rem; +} +p { + margin-left: 0; + margin-right: 0; + margin-top: 0; + padding-bottom: 0; + padding-left: 0; + padding-right: 0; + padding-top: 0; + margin-bottom: 1.45rem; +} +pre { + margin-left: 0; + margin-right: 0; + margin-top: 0; + margin-bottom: 1.45rem; + font-size: 0.85rem; + line-height: 1.42; + background: hsla(0, 0%, 0%, 0.04); + border-radius: 3px; + overflow: auto; + word-wrap: normal; + padding: 1.45rem; +} +table { + margin-left: 0; + margin-right: 0; + margin-top: 0; + padding-bottom: 0; + padding-left: 0; + padding-right: 0; + padding-top: 0; + margin-bottom: 1.45rem; + font-size: 1rem; + line-height: 1.45rem; + border-collapse: collapse; + width: 100%; +} +blockquote { + margin-left: 1.45rem; + margin-right: 1.45rem; + margin-top: 0; + padding-bottom: 0; + padding-left: 0; + padding-right: 0; + padding-top: 0; + margin-bottom: 1.45rem; +} +form { + margin-left: 0; + margin-right: 0; + margin-top: 0; + padding-bottom: 0; + padding-left: 0; + padding-right: 0; + padding-top: 0; + margin-bottom: 1.45rem; +} +noscript { + margin-left: 0; + margin-right: 0; + margin-top: 0; + padding-bottom: 0; + padding-left: 0; + padding-right: 0; + padding-top: 0; + margin-bottom: 1.45rem; +} +iframe { + margin-left: 0; + margin-right: 0; + margin-top: 0; + padding-bottom: 0; + padding-left: 0; + padding-right: 0; + padding-top: 0; + margin-bottom: 1.45rem; +} +address { + margin-left: 0; + margin-right: 0; + margin-top: 0; + padding-bottom: 0; + padding-left: 0; + padding-right: 0; + padding-top: 0; + margin-bottom: 1.45rem; +} +b { + font-weight: bold; +} +strong { + font-weight: bold; +} +dt { + font-weight: bold; +} +th { + font-weight: bold; +} +li { + margin-bottom: calc(1.45rem / 2); +} +ol li { + padding-left: 0; +} +ul li { + padding-left: 0; +} +li > ol { + margin-left: 1.45rem; + margin-bottom: calc(1.45rem / 2); + margin-top: calc(1.45rem / 2); +} +li > ul { + margin-left: 1.45rem; + margin-bottom: calc(1.45rem / 2); + margin-top: calc(1.45rem / 2); +} +blockquote *:last-child { + margin-bottom: 0; +} +li *:last-child { + margin-bottom: 0; +} +p *:last-child { + margin-bottom: 0; +} +li > p { + margin-bottom: calc(1.45rem / 2); +} +code { + font-size: 0.85rem; + line-height: 1.45rem; +} +kbd { + font-size: 0.85rem; + line-height: 1.45rem; +} +samp { + font-size: 0.85rem; + line-height: 1.45rem; +} +abbr { + border-bottom: 1px dotted hsla(0, 0%, 0%, 0.5); + cursor: help; +} +acronym { + border-bottom: 1px dotted hsla(0, 0%, 0%, 0.5); + cursor: help; +} +thead { + text-align: left; +} +td, +th { + text-align: left; + border-bottom: 1px solid hsla(0, 0%, 0%, 0.12); + font-feature-settings: "tnum"; + -moz-font-feature-settings: "tnum"; + -ms-font-feature-settings: "tnum"; + -webkit-font-feature-settings: "tnum"; + padding-left: 0.96667rem; + padding-right: 0.96667rem; + padding-top: 0.725rem; + padding-bottom: calc(0.725rem - 1px); +} +th:first-child, +td:first-child { + padding-left: 0; +} +th:last-child, +td:last-child { + padding-right: 0; +} +tt, +code { + background-color: hsla(0, 0%, 0%, 0.04); + border-radius: 3px; + font-family: "SFMono-Regular", Consolas, "Roboto Mono", "Droid Sans Mono", + "Liberation Mono", Menlo, Courier, monospace; + padding: 0; + padding-top: 0.2em; + padding-bottom: 0.2em; +} +pre code { + background: none; + line-height: 1.42; +} +code:before, +code:after, +tt:before, +tt:after { + letter-spacing: -0.2em; + content: " "; +} +pre code:before, +pre code:after, +pre tt:before, +pre tt:after { + content: ""; +} +@media only screen and (max-width: 480px) { + html { + font-size: 100%; + } +} diff --git a/examples/mdx/src/components/layout.tsx b/examples/mdx/src/components/layout.tsx new file mode 100644 index 0000000..c7fe40b --- /dev/null +++ b/examples/mdx/src/components/layout.tsx @@ -0,0 +1,43 @@ +import * as React from 'react'; +import { useStaticQuery, graphql } from 'gatsby'; + +import Header from './header'; +import './layout.css'; + +const Layout: React.FC = ({ children }) => { + const data = useStaticQuery(graphql` + query Layout { + site { + siteMetadata { + title + } + } + } + `); + + return ( + <> +
+
+
{children}
+
+ © {new Date().getFullYear()}, Built with + {' '} + Gatsby +
+
+ + ); +}; + +export default Layout; diff --git a/examples/mdx/src/components/seo.tsx b/examples/mdx/src/components/seo.tsx new file mode 100644 index 0000000..664b208 --- /dev/null +++ b/examples/mdx/src/components/seo.tsx @@ -0,0 +1,67 @@ +import * as React from 'react'; +import { Helmet } from 'react-helmet-async'; +import { useStaticQuery, graphql } from 'gatsby'; + +type SeoProps = { + title?: string, + description?: string, + lang?: string, +}; + +const Seo: React.FC = ({ title, description, lang }) => { + const { site } = useStaticQuery( + graphql` + query Seo { + site { + siteMetadata { + title + description + } + } + } + `, + ); + + const metaDescription = description || site?.siteMetadata?.description; + const defaultTitle = site?.siteMetadata?.title; + + return ( + + ); +}; + +export default Seo; diff --git a/examples/mdx/src/images/gatsby-astronaut.png b/examples/mdx/src/images/gatsby-astronaut.png new file mode 100644 index 0000000..da58ece Binary files /dev/null and b/examples/mdx/src/images/gatsby-astronaut.png differ diff --git a/examples/mdx/src/images/gatsby-icon.png b/examples/mdx/src/images/gatsby-icon.png new file mode 100644 index 0000000..908bc78 Binary files /dev/null and b/examples/mdx/src/images/gatsby-icon.png differ diff --git a/examples/mdx/src/pages/404.tsx b/examples/mdx/src/pages/404.tsx new file mode 100644 index 0000000..3a046ad --- /dev/null +++ b/examples/mdx/src/pages/404.tsx @@ -0,0 +1,14 @@ +import * as React from 'react'; + +import Layout from '../components/layout'; +import Seo from '../components/seo'; + +const NotFoundPage: React.FC = () => ( + + +

404: Not Found

+

You just hit a route that doesn't exist... the sadness.

+
+); + +export default NotFoundPage; diff --git a/examples/mdx/src/pages/index.tsx b/examples/mdx/src/pages/index.tsx new file mode 100644 index 0000000..ddce799 --- /dev/null +++ b/examples/mdx/src/pages/index.tsx @@ -0,0 +1,29 @@ +import * as React from 'react'; +import { Link } from 'gatsby'; +import { StaticImage } from 'gatsby-plugin-image'; + +import Layout from '../components/layout'; +import Seo from '../components/seo'; + +const IndexPage: React.FC = () => ( + + +

Hi people

+

Welcome to your new Gatsby site.

+

Now go build something great.

+ +

+ Go to page 2
+ Go to "Using MDX"
+

+
+); + +export default IndexPage; diff --git a/examples/mdx/src/pages/page-2.tsx b/examples/mdx/src/pages/page-2.tsx new file mode 100644 index 0000000..688c6d9 --- /dev/null +++ b/examples/mdx/src/pages/page-2.tsx @@ -0,0 +1,16 @@ +import * as React from 'react'; +import { Link } from 'gatsby'; + +import Layout from '../components/layout'; +import Seo from '../components/seo'; + +const SecondPage: React.FC = () => ( + + +

Hi from the second page

+

Welcome to page 2

+ Go back to the homepage +
+); + +export default SecondPage; diff --git a/examples/mdx/src/pages/using-mdx.mdx b/examples/mdx/src/pages/using-mdx.mdx new file mode 100644 index 0000000..5a41dcc --- /dev/null +++ b/examples/mdx/src/pages/using-mdx.mdx @@ -0,0 +1,17 @@ +import { graphql } from 'gatsby'; + +export const query = graphql` + query UsingMdx { + site { + siteMetadata { + title + } + } + } +`; + +# Hey MDX + +Some Content + +Title: {props.data.site.siteMetadata.title} diff --git a/examples/mdx/tsconfig.json b/examples/mdx/tsconfig.json new file mode 100644 index 0000000..035b89b --- /dev/null +++ b/examples/mdx/tsconfig.json @@ -0,0 +1,9 @@ +{ + "extends": "../../tsconfig.json", + "include": [ + "src", + "gatsby-config.ts" + ], + "exclude": [ + ] +} diff --git a/yarn.lock b/yarn.lock index 2b11016..893ed69 100644 --- a/yarn.lock +++ b/yarn.lock @@ -78,7 +78,7 @@ __metadata: languageName: node linkType: hard -"@babel/code-frame@npm:^7.14.0, @babel/code-frame@npm:^7.16.7": +"@babel/code-frame@npm:^7.10.4, @babel/code-frame@npm:^7.14.0, @babel/code-frame@npm:^7.16.7": version: 7.16.7 resolution: "@babel/code-frame@npm:7.16.7" dependencies: @@ -101,6 +101,13 @@ __metadata: languageName: node linkType: hard +"@babel/compat-data@npm:^7.17.10": + version: 7.17.10 + resolution: "@babel/compat-data@npm:7.17.10" + checksum: e85051087cd4690de5061909a2dd2d7f8b6434a3c2e30be6c119758db2027ae1845bcd75a81127423dd568b706ac6994a1a3d7d701069a23bf5cfe900728290b + languageName: node + linkType: hard + "@babel/core@npm:*, @babel/core@npm:^7.12.10, @babel/core@npm:^7.14.0, @babel/core@npm:^7.15.5, @babel/core@npm:^7.17.5, @babel/core@npm:^7.8.0": version: 7.17.5 resolution: "@babel/core@npm:7.17.5" @@ -124,6 +131,30 @@ __metadata: languageName: node linkType: hard +"@babel/core@npm:7.12.9": + version: 7.12.9 + resolution: "@babel/core@npm:7.12.9" + dependencies: + "@babel/code-frame": ^7.10.4 + "@babel/generator": ^7.12.5 + "@babel/helper-module-transforms": ^7.12.1 + "@babel/helpers": ^7.12.5 + "@babel/parser": ^7.12.7 + "@babel/template": ^7.12.7 + "@babel/traverse": ^7.12.9 + "@babel/types": ^7.12.7 + convert-source-map: ^1.7.0 + debug: ^4.1.0 + gensync: ^1.0.0-beta.1 + json5: ^2.1.2 + lodash: ^4.17.19 + resolve: ^1.3.2 + semver: ^5.4.1 + source-map: ^0.5.0 + checksum: 4d34eca4688214a4eb6bd5dde906b69a7824f17b931f52cd03628a8ac94d8fbe15565aebffdde106e974c8738cd64ac62c6a6060baa7139a06db1f18c4ff872d + languageName: node + linkType: hard + "@babel/core@npm:^7.1.0, @babel/core@npm:^7.12.3": version: 7.14.0 resolution: "@babel/core@npm:7.14.0" @@ -184,6 +215,17 @@ __metadata: languageName: node linkType: hard +"@babel/generator@npm:^7.12.5, @babel/generator@npm:^7.15.4, @babel/generator@npm:^7.18.2": + version: 7.18.2 + resolution: "@babel/generator@npm:7.18.2" + dependencies: + "@babel/types": ^7.18.2 + "@jridgewell/gen-mapping": ^0.3.0 + jsesc: ^2.5.1 + checksum: d0661e95532ddd97566d41fec26355a7b28d1cbc4df95fe80cc084c413342935911b48db20910708db39714844ddd614f61c2ec4cca3fb10181418bdcaa2e7a3 + languageName: node + linkType: hard + "@babel/generator@npm:^7.14.0": version: 7.14.1 resolution: "@babel/generator@npm:7.14.1" @@ -273,6 +315,20 @@ __metadata: languageName: node linkType: hard +"@babel/helper-compilation-targets@npm:^7.17.10": + version: 7.18.2 + resolution: "@babel/helper-compilation-targets@npm:7.18.2" + dependencies: + "@babel/compat-data": ^7.17.10 + "@babel/helper-validator-option": ^7.16.7 + browserslist: ^4.20.2 + semver: ^6.3.0 + peerDependencies: + "@babel/core": ^7.0.0 + checksum: 4f02e79f20c0b3f8db5049ba8c35027c41ccb3fc7884835d04e49886538e0f55702959db1bb75213c94a5708fec2dc81a443047559a4f184abb884c72c0059b4 + languageName: node + linkType: hard + "@babel/helper-create-class-features-plugin@npm:^7.12.1": version: 7.14.1 resolution: "@babel/helper-create-class-features-plugin@npm:7.14.1" @@ -368,6 +424,13 @@ __metadata: languageName: node linkType: hard +"@babel/helper-environment-visitor@npm:^7.18.2": + version: 7.18.2 + resolution: "@babel/helper-environment-visitor@npm:7.18.2" + checksum: 1a9c8726fad454a082d077952a90f17188e92eabb3de236cb4782c49b39e3f69c327e272b965e9a20ff8abf37d30d03ffa6fd7974625a6c23946f70f7527f5e9 + languageName: node + linkType: hard + "@babel/helper-explode-assignable-expression@npm:^7.16.7": version: 7.16.7 resolution: "@babel/helper-explode-assignable-expression@npm:7.16.7" @@ -410,6 +473,16 @@ __metadata: languageName: node linkType: hard +"@babel/helper-function-name@npm:^7.17.9": + version: 7.17.9 + resolution: "@babel/helper-function-name@npm:7.17.9" + dependencies: + "@babel/template": ^7.16.7 + "@babel/types": ^7.17.0 + checksum: a59b2e5af56d8f43b9b0019939a43774754beb7cb01a211809ca8031c71890999d07739e955343135ec566c4d8ff725435f1f60fb0af3bb546837c1f9f84f496 + languageName: node + linkType: hard + "@babel/helper-get-function-arity@npm:^7.12.13": version: 7.12.13 resolution: "@babel/helper-get-function-arity@npm:7.12.13" @@ -539,6 +612,13 @@ __metadata: languageName: node linkType: hard +"@babel/helper-plugin-utils@npm:7.10.4": + version: 7.10.4 + resolution: "@babel/helper-plugin-utils@npm:7.10.4" + checksum: 639ed8fc462b97a83226cee6bb081b1d77e7f73e8b033d2592ed107ee41d96601e321e5ea53a33e47469c7f1146b250a3dcda5ab873c7de162ab62120c341a41 + languageName: node + linkType: hard + "@babel/helper-plugin-utils@npm:^7.0.0, @babel/helper-plugin-utils@npm:^7.10.4, @babel/helper-plugin-utils@npm:^7.12.13, @babel/helper-plugin-utils@npm:^7.13.0, @babel/helper-plugin-utils@npm:^7.8.0, @babel/helper-plugin-utils@npm:^7.8.3": version: 7.13.0 resolution: "@babel/helper-plugin-utils@npm:7.13.0" @@ -546,6 +626,13 @@ __metadata: languageName: node linkType: hard +"@babel/helper-plugin-utils@npm:^7.14.0, @babel/helper-plugin-utils@npm:^7.17.12": + version: 7.17.12 + resolution: "@babel/helper-plugin-utils@npm:7.17.12" + checksum: 4813cf0ddb0f143de032cb88d4207024a2334951db330f8216d6fa253ea320c02c9b2667429ef1a34b5e95d4cfbd085f6cb72d418999751c31d0baf2422cc61d + languageName: node + linkType: hard + "@babel/helper-plugin-utils@npm:^7.14.5, @babel/helper-plugin-utils@npm:^7.16.7": version: 7.16.7 resolution: "@babel/helper-plugin-utils@npm:7.16.7" @@ -683,6 +770,17 @@ __metadata: languageName: node linkType: hard +"@babel/helpers@npm:^7.12.5": + version: 7.18.2 + resolution: "@babel/helpers@npm:7.18.2" + dependencies: + "@babel/template": ^7.16.7 + "@babel/traverse": ^7.18.2 + "@babel/types": ^7.18.2 + checksum: 94620242f23f6d5f9b83a02b1aa1632ffb05b0815e1bb53d3b46d64aa8e771066bba1db8bd267d9091fb00134cfaeda6a8d69d1d4cc2c89658631adfa077ae70 + languageName: node + linkType: hard + "@babel/helpers@npm:^7.14.0": version: 7.14.0 resolution: "@babel/helpers@npm:7.14.0" @@ -736,6 +834,15 @@ __metadata: languageName: node linkType: hard +"@babel/parser@npm:^7.12.7, @babel/parser@npm:^7.18.0": + version: 7.18.4 + resolution: "@babel/parser@npm:7.18.4" + bin: + parser: ./bin/babel-parser.js + checksum: e05b2dc720c4b200e088258f3c2a2de5041c140444edc38181d1217b10074e881a7133162c5b62356061f26279f08df5a06ec14c5842996ee8601ad03c57a44f + languageName: node + linkType: hard + "@babel/parser@npm:^7.14.2, @babel/parser@npm:^7.14.3": version: 7.14.4 resolution: "@babel/parser@npm:7.14.4" @@ -900,7 +1007,7 @@ __metadata: languageName: node linkType: hard -"@babel/plugin-proposal-object-rest-spread@npm:^7.0.0": +"@babel/plugin-proposal-object-rest-spread@npm:7.12.1, @babel/plugin-proposal-object-rest-spread@npm:^7.0.0": version: 7.12.1 resolution: "@babel/plugin-proposal-object-rest-spread@npm:7.12.1" dependencies: @@ -913,6 +1020,21 @@ __metadata: languageName: node linkType: hard +"@babel/plugin-proposal-object-rest-spread@npm:^7.14.7": + version: 7.18.0 + resolution: "@babel/plugin-proposal-object-rest-spread@npm:7.18.0" + dependencies: + "@babel/compat-data": ^7.17.10 + "@babel/helper-compilation-targets": ^7.17.10 + "@babel/helper-plugin-utils": ^7.17.12 + "@babel/plugin-syntax-object-rest-spread": ^7.8.3 + "@babel/plugin-transform-parameters": ^7.17.12 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 2b49bcf9a6b11fd8b6a1d4962a64f3c846a63f8340eca9824c907f75bfcff7422ca35b135607fc3ef2d4e7e77ce6b6d955b772dc3c1c39f7ed24a0d8a560ec78 + languageName: node + linkType: hard + "@babel/plugin-proposal-object-rest-spread@npm:^7.16.7": version: 7.17.3 resolution: "@babel/plugin-proposal-object-rest-spread@npm:7.17.3" @@ -1124,7 +1246,7 @@ __metadata: languageName: node linkType: hard -"@babel/plugin-syntax-jsx@npm:^7.0.0, @babel/plugin-syntax-jsx@npm:^7.12.1": +"@babel/plugin-syntax-jsx@npm:7.12.1, @babel/plugin-syntax-jsx@npm:^7.0.0, @babel/plugin-syntax-jsx@npm:^7.12.1": version: 7.12.1 resolution: "@babel/plugin-syntax-jsx@npm:7.12.1" dependencies: @@ -1179,7 +1301,7 @@ __metadata: languageName: node linkType: hard -"@babel/plugin-syntax-object-rest-spread@npm:^7.0.0, @babel/plugin-syntax-object-rest-spread@npm:^7.8.0, @babel/plugin-syntax-object-rest-spread@npm:^7.8.3": +"@babel/plugin-syntax-object-rest-spread@npm:7.8.3, @babel/plugin-syntax-object-rest-spread@npm:^7.0.0, @babel/plugin-syntax-object-rest-spread@npm:^7.8.0, @babel/plugin-syntax-object-rest-spread@npm:^7.8.3": version: 7.8.3 resolution: "@babel/plugin-syntax-object-rest-spread@npm:7.8.3" dependencies: @@ -1737,6 +1859,17 @@ __metadata: languageName: node linkType: hard +"@babel/plugin-transform-parameters@npm:^7.17.12": + version: 7.17.12 + resolution: "@babel/plugin-transform-parameters@npm:7.17.12" + dependencies: + "@babel/helper-plugin-utils": ^7.17.12 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: d9ed5ec61dc460835bade8fa710b42ec9f207bd448ead7e8abd46b87db0afedbb3f51284700fd2a6892fdf6544ec9b949c505c6542c5ba0a41ca4e8749af00f0 + languageName: node + linkType: hard + "@babel/plugin-transform-property-literals@npm:^7.0.0": version: 7.12.1 resolution: "@babel/plugin-transform-property-literals@npm:7.12.1" @@ -2187,7 +2320,7 @@ __metadata: languageName: node linkType: hard -"@babel/template@npm:^7.16.7": +"@babel/template@npm:^7.12.7, @babel/template@npm:^7.16.7": version: 7.16.7 resolution: "@babel/template@npm:7.16.7" dependencies: @@ -2198,6 +2331,24 @@ __metadata: languageName: node linkType: hard +"@babel/traverse@npm:^7.12.9, @babel/traverse@npm:^7.18.2": + version: 7.18.2 + resolution: "@babel/traverse@npm:7.18.2" + dependencies: + "@babel/code-frame": ^7.16.7 + "@babel/generator": ^7.18.2 + "@babel/helper-environment-visitor": ^7.18.2 + "@babel/helper-function-name": ^7.17.9 + "@babel/helper-hoist-variables": ^7.16.7 + "@babel/helper-split-export-declaration": ^7.16.7 + "@babel/parser": ^7.18.0 + "@babel/types": ^7.18.2 + debug: ^4.1.0 + globals: ^11.1.0 + checksum: e21c2d550bf610406cf21ef6fbec525cb1d80b9d6d71af67552478a24ee371203cb4025b23b110ae7288a62a874ad5898daad19ad23daa95dfc8ab47a47a092f + languageName: node + linkType: hard + "@babel/traverse@npm:^7.13.0, @babel/traverse@npm:^7.14.0": version: 7.14.0 resolution: "@babel/traverse@npm:7.14.0" @@ -2258,6 +2409,16 @@ __metadata: languageName: node linkType: hard +"@babel/types@npm:^7.12.7, @babel/types@npm:^7.18.2": + version: 7.18.4 + resolution: "@babel/types@npm:7.18.4" + dependencies: + "@babel/helper-validator-identifier": ^7.16.7 + to-fast-properties: ^2.0.0 + checksum: 85df59beb99c1b95e9e41590442f2ffa1e5b1b558d025489db40c9f7c906bd03a17da26c3ec486e5800e80af27c42ca7eee9506d9212ab17766d2d68d30fbf52 + languageName: node + linkType: hard + "@babel/types@npm:^7.14.2": version: 7.14.4 resolution: "@babel/types@npm:7.14.4" @@ -3535,6 +3696,17 @@ __metadata: languageName: node linkType: hard +"@jridgewell/gen-mapping@npm:^0.3.0": + version: 0.3.1 + resolution: "@jridgewell/gen-mapping@npm:0.3.1" + dependencies: + "@jridgewell/set-array": ^1.0.0 + "@jridgewell/sourcemap-codec": ^1.4.10 + "@jridgewell/trace-mapping": ^0.3.9 + checksum: e9e7bb3335dea9e60872089761d4e8e089597360cdb1af90370e9d53b7d67232c1e0a3ab65fbfef4fc785745193fbc56bff9f3a6cab6c6ce3f15e12b4191f86b + languageName: node + linkType: hard + "@jridgewell/resolve-uri@npm:^3.0.3": version: 3.0.5 resolution: "@jridgewell/resolve-uri@npm:3.0.5" @@ -3542,6 +3714,13 @@ __metadata: languageName: node linkType: hard +"@jridgewell/set-array@npm:^1.0.0": + version: 1.1.1 + resolution: "@jridgewell/set-array@npm:1.1.1" + checksum: cc5d91e0381c347e3edee4ca90b3c292df9e6e55f29acbe0dd97de8651b4730e9ab761406fd572effa79972a0edc55647b627f8c72315e276d959508853d9bf2 + languageName: node + linkType: hard + "@jridgewell/sourcemap-codec@npm:^1.4.10": version: 1.4.11 resolution: "@jridgewell/sourcemap-codec@npm:1.4.11" @@ -3559,6 +3738,59 @@ __metadata: languageName: node linkType: hard +"@jridgewell/trace-mapping@npm:^0.3.9": + version: 0.3.13 + resolution: "@jridgewell/trace-mapping@npm:0.3.13" + dependencies: + "@jridgewell/resolve-uri": ^3.0.3 + "@jridgewell/sourcemap-codec": ^1.4.10 + checksum: e38254e830472248ca10a6ed1ae75af5e8514f0680245a5e7b53bc3c030fd8691d4d3115d80595b45d3badead68269769ed47ecbbdd67db1343a11f05700e75a + languageName: node + linkType: hard + +"@mdx-js/mdx@npm:v1": + version: 1.6.22 + resolution: "@mdx-js/mdx@npm:1.6.22" + dependencies: + "@babel/core": 7.12.9 + "@babel/plugin-syntax-jsx": 7.12.1 + "@babel/plugin-syntax-object-rest-spread": 7.8.3 + "@mdx-js/util": 1.6.22 + babel-plugin-apply-mdx-type-prop: 1.6.22 + babel-plugin-extract-import-names: 1.6.22 + camelcase-css: 2.0.1 + detab: 2.0.4 + hast-util-raw: 6.0.1 + lodash.uniq: 4.5.0 + mdast-util-to-hast: 10.0.1 + remark-footnotes: 2.0.0 + remark-mdx: 1.6.22 + remark-parse: 8.0.3 + remark-squeeze-paragraphs: 4.0.0 + style-to-object: 0.3.0 + unified: 9.2.0 + unist-builder: 2.0.3 + unist-util-visit: 2.0.3 + checksum: 0839b4a3899416326ea6578fe9e470af319da559bc6d3669c60942e456b49a98eebeb3358c623007b4786a2175a450d2c51cd59df64639013c5a3d22366931a6 + languageName: node + linkType: hard + +"@mdx-js/react@npm:v1": + version: 1.6.22 + resolution: "@mdx-js/react@npm:1.6.22" + peerDependencies: + react: ^16.13.1 || ^17.0.0 + checksum: bc84bd514bc127f898819a0c6f1a6915d9541011bd8aefa1fcc1c9bea8939f31051409e546bdec92babfa5b56092a16d05ef6d318304ac029299df5181dc94c8 + languageName: node + linkType: hard + +"@mdx-js/util@npm:1.6.22": + version: 1.6.22 + resolution: "@mdx-js/util@npm:1.6.22" + checksum: 4b393907e39a1a75214f0314bf72a0adfa5e5adffd050dd5efe9c055b8549481a3cfc9f308c16dfb33311daf3ff63added7d5fd1fe52db614c004f886e0e559a + languageName: node + linkType: hard + "@nicolo-ribaudo/chokidar-2@npm:2.1.8-no-fsevents.3": version: 2.1.8-no-fsevents.3 resolution: "@nicolo-ribaudo/chokidar-2@npm:2.1.8-no-fsevents.3" @@ -4593,6 +4825,15 @@ __metadata: languageName: node linkType: hard +"@types/hast@npm:^2.0.0": + version: 2.3.4 + resolution: "@types/hast@npm:2.3.4" + dependencies: + "@types/unist": "*" + checksum: fff47998f4c11e21a7454b58673f70478740ecdafd95aaf50b70a3daa7da9cdc57315545bf9c039613732c40b7b0e9e49d11d03fe9a4304721cdc3b29a88141e + languageName: node + linkType: hard + "@types/http-cache-semantics@npm:*": version: 4.0.0 resolution: "@types/http-cache-semantics@npm:4.0.0" @@ -4707,6 +4948,15 @@ __metadata: languageName: node linkType: hard +"@types/mdast@npm:^3.0.0": + version: 3.0.10 + resolution: "@types/mdast@npm:3.0.10" + dependencies: + "@types/unist": "*" + checksum: 3f587bfc0a9a2403ecadc220e61031b01734fedaf82e27eb4d5ba039c0eb54db8c85681ccc070ab4df3f7ec711b736a82b990e69caa14c74bf7ac0ccf2ac7313 + languageName: node + linkType: hard + "@types/minimatch@npm:*": version: 3.0.3 resolution: "@types/minimatch@npm:3.0.3" @@ -4761,6 +5011,13 @@ __metadata: languageName: node linkType: hard +"@types/parse5@npm:^5.0.0": + version: 5.0.3 + resolution: "@types/parse5@npm:5.0.3" + checksum: d6b7495cb1850f9f2e9c5e103ede9f2d30a5320669707b105c403868adc9e4bf8d3a7ff314cc23f67826bbbbbc0e6147346ce9062ab429f099dba7a01f463919 + languageName: node + linkType: hard + "@types/prettier@npm:^2.1.5": version: 2.2.3 resolution: "@types/prettier@npm:2.2.3" @@ -4872,6 +5129,34 @@ __metadata: languageName: node linkType: hard +"@types/unist@npm:*, @types/unist@npm:^2.0.0, @types/unist@npm:^2.0.2, @types/unist@npm:^2.0.3": + version: 2.0.6 + resolution: "@types/unist@npm:2.0.6" + checksum: 25cb860ff10dde48b54622d58b23e66214211a61c84c0f15f88d38b61aa1b53d4d46e42b557924a93178c501c166aa37e28d7f6d994aba13d24685326272d5db + languageName: node + linkType: hard + +"@types/vfile-message@npm:*": + version: 1.0.1 + resolution: "@types/vfile-message@npm:1.0.1" + dependencies: + "@types/node": "*" + "@types/unist": "*" + checksum: 254b8399645dcdd9e246002b2ba99526aa40b1ba941ad18085f21d8531c3e2ed04346e864c79c0c17a67dfe96ad2258e9e3a8c441783783e49c32dc8cfb0484b + languageName: node + linkType: hard + +"@types/vfile@npm:^3.0.0": + version: 3.0.2 + resolution: "@types/vfile@npm:3.0.2" + dependencies: + "@types/node": "*" + "@types/unist": "*" + "@types/vfile-message": "*" + checksum: ab62e98474b1148909c4f9e0c7b23d80383165d401c836fe48341b0c274fee09bc373de4b073083d00abb36c520c09f086c263c34e048f7b2d5ca7ac0357d9f6 + languageName: node + linkType: hard + "@types/websocket@npm:1.0.1": version: 1.0.1 resolution: "@types/websocket@npm:1.0.1" @@ -5842,6 +6127,13 @@ __metadata: languageName: node linkType: hard +"array-iterate@npm:^1.0.0": + version: 1.1.4 + resolution: "array-iterate@npm:1.1.4" + checksum: 8adc65525dfa871577b7ab91b41efd61d29c4067a08ec927340d6975e45797b9f04254dda115e366fbef11fb49277ac1c166405389886c7a251e1eddca89bd08 + languageName: node + linkType: hard + "array-union@npm:^2.1.0": version: 2.1.0 resolution: "array-union@npm:2.1.0" @@ -6091,6 +6383,18 @@ __metadata: languageName: node linkType: hard +"babel-plugin-apply-mdx-type-prop@npm:1.6.22": + version: 1.6.22 + resolution: "babel-plugin-apply-mdx-type-prop@npm:1.6.22" + dependencies: + "@babel/helper-plugin-utils": 7.10.4 + "@mdx-js/util": 1.6.22 + peerDependencies: + "@babel/core": ^7.11.6 + checksum: 43e2100164a8f3e46fddd76afcbfb1f02cbebd5612cfe63f3d344a740b0afbdc4d2bf5659cffe9323dd2554c7b86b23ebedae9dadcec353b6594f4292a1a28e2 + languageName: node + linkType: hard + "babel-plugin-dynamic-import-node@npm:^2.3.3": version: 2.3.3 resolution: "babel-plugin-dynamic-import-node@npm:2.3.3" @@ -6100,6 +6404,15 @@ __metadata: languageName: node linkType: hard +"babel-plugin-extract-import-names@npm:1.6.22": + version: 1.6.22 + resolution: "babel-plugin-extract-import-names@npm:1.6.22" + dependencies: + "@babel/helper-plugin-utils": 7.10.4 + checksum: 145ccf09c96d36411d340e78086555f8d4d5924ea39fcb0eca461c066cfa98bc4344982bb35eb85d054ef88f8d4dfc0205ba27370c1d8fcc78191b02908d044d + languageName: node + linkType: hard + "babel-plugin-istanbul@npm:^6.1.1": version: 6.1.1 resolution: "babel-plugin-istanbul@npm:6.1.1" @@ -6337,6 +6650,13 @@ __metadata: languageName: node linkType: hard +"bail@npm:^1.0.0": + version: 1.0.5 + resolution: "bail@npm:1.0.5" + checksum: 6c334940d7eaa4e656a12fb12407b6555649b6deb6df04270fa806e0da82684ebe4a4e47815b271c794b40f8d6fa286e0c248b14ddbabb324a917fab09b7301a + languageName: node + linkType: hard + "balanced-match@npm:^1.0.0": version: 1.0.0 resolution: "balanced-match@npm:1.0.0" @@ -6432,7 +6752,7 @@ __metadata: languageName: node linkType: hard -"bluebird@npm:^3.7.2": +"bluebird@npm:^3.0.5, bluebird@npm:^3.7.2": version: 3.7.2 resolution: "bluebird@npm:3.7.2" checksum: 869417503c722e7dc54ca46715f70e15f4d9c602a423a02c825570862d12935be59ed9c7ba34a9b31f186c017c23cac6b54e35446f8353059c101da73eac22ef @@ -6591,6 +6911,21 @@ __metadata: languageName: node linkType: hard +"browserslist@npm:^4.20.2": + version: 4.20.4 + resolution: "browserslist@npm:4.20.4" + dependencies: + caniuse-lite: ^1.0.30001349 + electron-to-chromium: ^1.4.147 + escalade: ^3.1.1 + node-releases: ^2.0.5 + picocolors: ^1.0.0 + bin: + browserslist: cli.js + checksum: 0e56c42da765524e5c31bc9a1f08afaa8d5dba085071137cf21e56dc78d0cf0283764143df4c7d1c0cd18c3187fc9494e1d93fa0255004f0be493251a28635f9 + languageName: node + linkType: hard + "bser@npm:2.1.1": version: 2.1.1 resolution: "bser@npm:2.1.1" @@ -6759,6 +7094,23 @@ __metadata: languageName: node linkType: hard +"camel-case@npm:^3.0.0": + version: 3.0.0 + resolution: "camel-case@npm:3.0.0" + dependencies: + no-case: ^2.2.0 + upper-case: ^1.1.1 + checksum: 4190ed6ab8acf4f3f6e1a78ad4d0f3f15ce717b6bfa1b5686d58e4bcd29960f6e312dd746b5fa259c6d452f1413caef25aee2e10c9b9a580ac83e516533a961a + languageName: node + linkType: hard + +"camelcase-css@npm:2.0.1, camelcase-css@npm:^2.0.1": + version: 2.0.1 + resolution: "camelcase-css@npm:2.0.1" + checksum: 1cec2b3b3dcb5026688a470b00299a8db7d904c4802845c353dbd12d9d248d3346949a814d83bfd988d4d2e5b9904c07efe76fecd195a1d4f05b543e7c0b56b1 + languageName: node + linkType: hard + "camelcase@npm:^5.0.0, camelcase@npm:^5.3.1": version: 5.3.1 resolution: "camelcase@npm:5.3.1" @@ -6799,6 +7151,13 @@ __metadata: languageName: node linkType: hard +"caniuse-lite@npm:^1.0.30001349": + version: 1.0.30001352 + resolution: "caniuse-lite@npm:1.0.30001352" + checksum: 575ad031349e56224471859decd100d0f90c804325bf1b543789b212d6126f6e18925766b325b1d96f75e48df0036e68f92af26d1fb175803fd6ad935bc807ac + languageName: node + linkType: hard + "capital-case@npm:^1.0.4": version: 1.0.4 resolution: "capital-case@npm:1.0.4" @@ -6817,6 +7176,13 @@ __metadata: languageName: node linkType: hard +"ccount@npm:^1.0.0": + version: 1.1.0 + resolution: "ccount@npm:1.1.0" + checksum: b335a79d0aa4308919cf7507babcfa04ac63d389ebed49dbf26990d4607c8a4713cde93cc83e707d84571ddfe1e7615dad248be9bc422ae4c188210f71b08b78 + languageName: node + linkType: hard + "chalk@npm:2.4.2, chalk@npm:^2.0.0, chalk@npm:^2.4.1, chalk@npm:^2.4.2": version: 2.4.2 resolution: "chalk@npm:2.4.2" @@ -6876,6 +7242,32 @@ __metadata: languageName: node linkType: hard +"change-case@npm:^3.1.0": + version: 3.1.0 + resolution: "change-case@npm:3.1.0" + dependencies: + camel-case: ^3.0.0 + constant-case: ^2.0.0 + dot-case: ^2.1.0 + header-case: ^1.0.0 + is-lower-case: ^1.1.0 + is-upper-case: ^1.1.0 + lower-case: ^1.1.1 + lower-case-first: ^1.0.0 + no-case: ^2.3.2 + param-case: ^2.1.0 + pascal-case: ^2.0.0 + path-case: ^2.1.0 + sentence-case: ^2.1.0 + snake-case: ^2.1.0 + swap-case: ^1.1.0 + title-case: ^2.1.0 + upper-case: ^1.1.1 + upper-case-first: ^1.1.0 + checksum: d6f9f90a5f1d2a98294e06ea62f913fa0d7cfc289f188bf05662344da6128f5710b5c99ece83682c6a848db8d996b7348e09b2235dc3363afb6ae7142e7978e1 + languageName: node + linkType: hard + "change-case@npm:^4.1.2": version: 4.1.2 resolution: "change-case@npm:4.1.2" @@ -6903,6 +7295,34 @@ __metadata: languageName: node linkType: hard +"character-entities-html4@npm:^1.0.0": + version: 1.1.4 + resolution: "character-entities-html4@npm:1.1.4" + checksum: 22536aba07a378a2326420423ceadd65c0121032c527f80e84dfc648381992ed5aa666d7c2b267cd269864b3682d5b0315fc2f03a9e7c017d1a96d24ec292d5f + languageName: node + linkType: hard + +"character-entities-legacy@npm:^1.0.0": + version: 1.1.4 + resolution: "character-entities-legacy@npm:1.1.4" + checksum: fe03a82c154414da3a0c8ab3188e4237ec68006cbcd681cf23c7cfb9502a0e76cd30ab69a2e50857ca10d984d57de3b307680fff5328ccd427f400e559c3a811 + languageName: node + linkType: hard + +"character-entities@npm:^1.0.0": + version: 1.2.4 + resolution: "character-entities@npm:1.2.4" + checksum: e1545716571ead57beac008433c1ff69517cd8ca5b336889321c5b8ff4a99c29b65589a701e9c086cda8a5e346a67295e2684f6c7ea96819fe85cbf49bf8686d + languageName: node + linkType: hard + +"character-reference-invalid@npm:^1.0.0": + version: 1.1.4 + resolution: "character-reference-invalid@npm:1.1.4" + checksum: 20274574c70e05e2f81135f3b93285536bc8ff70f37f0809b0d17791a832838f1e49938382899ed4cb444e5bbd4314ca1415231344ba29f4222ce2ccf24fea0b + languageName: node + linkType: hard + "chardet@npm:^0.7.0": version: 0.7.0 resolution: "chardet@npm:0.7.0" @@ -6910,6 +7330,30 @@ __metadata: languageName: node linkType: hard +"cheerio@npm:^0.22.0": + version: 0.22.0 + resolution: "cheerio@npm:0.22.0" + dependencies: + css-select: ~1.2.0 + dom-serializer: ~0.1.0 + entities: ~1.1.1 + htmlparser2: ^3.9.1 + lodash.assignin: ^4.0.9 + lodash.bind: ^4.1.4 + lodash.defaults: ^4.0.1 + lodash.filter: ^4.4.0 + lodash.flatten: ^4.2.0 + lodash.foreach: ^4.3.0 + lodash.map: ^4.4.0 + lodash.merge: ^4.4.0 + lodash.pick: ^4.2.1 + lodash.reduce: ^4.4.0 + lodash.reject: ^4.4.0 + lodash.some: ^4.4.0 + checksum: b0a6cfa61eb7ae96e4cb8cfeeb14eb45bb790fa40098509268629c4cecca5b99124aabe6daa1154c497ac8def47bc3f9706cef5f0e8a6177a0c137d4bdaaf8b7 + languageName: node + linkType: hard + "chokidar@npm:^3.4.0": version: 3.5.1 resolution: "chokidar@npm:3.5.1" @@ -7126,6 +7570,13 @@ __metadata: languageName: node linkType: hard +"collapse-white-space@npm:^1.0.2": + version: 1.0.6 + resolution: "collapse-white-space@npm:1.0.6" + checksum: 9673fb797952c5c888341435596c69388b22cd5560c8cd3f40edb72734a9c820f56a7c9525166bcb7068b5d5805372e6fd0c4b9f2869782ad070cb5d3faf26e7 + languageName: node + linkType: hard + "collect-v8-coverage@npm:^1.0.0": version: 1.0.1 resolution: "collect-v8-coverage@npm:1.0.1" @@ -7218,6 +7669,13 @@ __metadata: languageName: node linkType: hard +"comma-separated-tokens@npm:^1.0.0": + version: 1.0.8 + resolution: "comma-separated-tokens@npm:1.0.8" + checksum: 0adcb07174fa4d08cf0f5c8e3aec40a36b5ff0c2c720e5e23f50fe02e6789d1d00a67036c80e0c1e1539f41d3e7f0101b074039dd833b4e4a59031b659d6ca0d + languageName: node + linkType: hard + "command-exists@npm:^1.2.4": version: 1.2.9 resolution: "command-exists@npm:1.2.9" @@ -7377,6 +7835,16 @@ __metadata: languageName: node linkType: hard +"constant-case@npm:^2.0.0": + version: 2.0.0 + resolution: "constant-case@npm:2.0.0" + dependencies: + snake-case: ^2.1.0 + upper-case: ^1.1.1 + checksum: 893c793a425ebcd0744061c7f12650c655aae259b89d5654fb8eda42d22c3690716a4988ed03f2abe370b1ee7bfec44f8e4395e76e2f1458a8921982b15410ba + languageName: node + linkType: hard + "constant-case@npm:^3.0.4": version: 3.0.4 resolution: "constant-case@npm:3.0.4" @@ -7482,6 +7950,13 @@ __metadata: languageName: node linkType: hard +"core-js@npm:^3.22.3": + version: 3.22.8 + resolution: "core-js@npm:3.22.8" + checksum: c79bcfea37920a5da880ad1fc8336355e833c83998bb28cd45cc59eef4d9824dd8d59ccd24d6b18ff88f284d53d9eef021ddbd2b5ab1c6305b01e98c1402e510 + languageName: node + linkType: hard + "core-util-is@npm:1.0.2, core-util-is@npm:~1.0.0": version: 1.0.2 resolution: "core-util-is@npm:1.0.2" @@ -7677,6 +8152,18 @@ __metadata: languageName: node linkType: hard +"css-select@npm:~1.2.0": + version: 1.2.0 + resolution: "css-select@npm:1.2.0" + dependencies: + boolbase: ~1.0.0 + css-what: 2.1 + domutils: 1.5.1 + nth-check: ~1.0.1 + checksum: 607cca60d2f5c56701fe5f800bbe668b114395c503d4e4808edbbbe70b8be3c96a6407428dc0227fcbdf335b20468e6a9e7fd689185edfb57d402e1e4837c9b7 + languageName: node + linkType: hard + "css-tree@npm:1.0.0-alpha.37": version: 1.0.0-alpha.37 resolution: "css-tree@npm:1.0.0-alpha.37" @@ -7697,6 +8184,13 @@ __metadata: languageName: node linkType: hard +"css-what@npm:2.1": + version: 2.1.3 + resolution: "css-what@npm:2.1.3" + checksum: a52d56c591a7e1c37506d0d8c4fdef72537fb8eb4cb68711485997a88d76b5a3342b73a7c79176268f95b428596c447ad7fa3488224a6b8b532e2f1f2ee8545c + languageName: node + linkType: hard + "css-what@npm:^3.2.1": version: 3.4.2 resolution: "css-what@npm:3.4.2" @@ -7878,6 +8372,13 @@ __metadata: languageName: node linkType: hard +"dataloader@npm:^1.4.0": + version: 1.4.0 + resolution: "dataloader@npm:1.4.0" + checksum: e2c93d43afde68980efc0cd9ff48e9851116e27a9687f863e02b56d46f7e7868cc762cd6dcbaf4197e1ca850a03651510c165c2ae24b8e9843fd894002ad0e20 + languageName: node + linkType: hard + "date-fns@npm:^2.16.1": version: 2.21.3 resolution: "date-fns@npm:2.21.3" @@ -8103,6 +8604,15 @@ __metadata: languageName: node linkType: hard +"detab@npm:2.0.4": + version: 2.0.4 + resolution: "detab@npm:2.0.4" + dependencies: + repeat-string: ^1.5.4 + checksum: 34b077521ecd4c6357d32ff7923be644d34aa6f6b7d717d40ec4a9168243eefaea2b512a75a460a6f70c31b0bbc31ff90f820a891803b4ddaf99e9d04d0d389d + languageName: node + linkType: hard + "detect-libc@npm:^1.0.3": version: 1.0.3 resolution: "detect-libc@npm:1.0.3" @@ -8286,6 +8796,16 @@ __metadata: languageName: node linkType: hard +"dom-serializer@npm:~0.1.0": + version: 0.1.1 + resolution: "dom-serializer@npm:0.1.1" + dependencies: + domelementtype: ^1.3.0 + entities: ^1.1.1 + checksum: 4f6a3eff802273741931cfd3c800fab4e683236eed10628d6605f52538a6bc0ce4770f3ca2ad68a27412c103ae9b6cdaed3c0a8e20d2704192bde497bc875215 + languageName: node + linkType: hard + "dom-walk@npm:^0.1.0": version: 0.1.2 resolution: "dom-walk@npm:0.1.2" @@ -8293,7 +8813,7 @@ __metadata: languageName: node linkType: hard -"domelementtype@npm:1": +"domelementtype@npm:1, domelementtype@npm:^1.3.0, domelementtype@npm:^1.3.1": version: 1.3.1 resolution: "domelementtype@npm:1.3.1" checksum: 7893da40218ae2106ec6ffc146b17f203487a52f5228b032ea7aa470e41dfe03e1bd762d0ee0139e792195efda765434b04b43cddcf63207b098f6ae44b36ad6 @@ -8323,6 +8843,15 @@ __metadata: languageName: node linkType: hard +"domhandler@npm:^2.3.0": + version: 2.4.2 + resolution: "domhandler@npm:2.4.2" + dependencies: + domelementtype: 1 + checksum: 49bd70c9c784f845cd047e1dfb3611bd10891c05719acfc93f01fc726a419ed09fbe0b69f9064392d556a63fffc5a02010856cedae9368f4817146d95a97011f + languageName: node + linkType: hard + "domhandler@npm:^4.0.0, domhandler@npm:^4.2.0, domhandler@npm:^4.3.0": version: 4.3.0 resolution: "domhandler@npm:4.3.0" @@ -8332,7 +8861,17 @@ __metadata: languageName: node linkType: hard -"domutils@npm:^1.7.0": +"domutils@npm:1.5.1": + version: 1.5.1 + resolution: "domutils@npm:1.5.1" + dependencies: + dom-serializer: 0 + domelementtype: 1 + checksum: 800d1f9d1c2e637267dae078ff6e24461e6be1baeb52fa70f2e7e7520816c032a925997cd15d822de53ef9896abb1f35e5c439d301500a9cd6b46a395f6f6ca0 + languageName: node + linkType: hard + +"domutils@npm:^1.5.1, domutils@npm:^1.7.0": version: 1.7.0 resolution: "domutils@npm:1.7.0" dependencies: @@ -8353,8 +8892,17 @@ __metadata: languageName: node linkType: hard -"dot-case@npm:^3.0.4": - version: 3.0.4 +"dot-case@npm:^2.1.0": + version: 2.1.1 + resolution: "dot-case@npm:2.1.1" + dependencies: + no-case: ^2.2.0 + checksum: 5c9d937245ff810a7ae788602e40c62e38cb515146ddf9b11c7f60cb02aae84859588761f1e8769d9e713609fae3c78dc99c8da9e0ee8e4d8b5c09a2fdf70328 + languageName: node + linkType: hard + +"dot-case@npm:^3.0.4": + version: 3.0.4 resolution: "dot-case@npm:3.0.4" dependencies: no-case: ^3.0.4 @@ -8431,6 +8979,13 @@ __metadata: languageName: node linkType: hard +"electron-to-chromium@npm:^1.4.147": + version: 1.4.152 + resolution: "electron-to-chromium@npm:1.4.152" + checksum: d1e3405adc8a8ddbcf5a91f33739f2f3f5fa7612a4e2b6cc6a85d9ebccc87f59cf9e99d2de93c7959b34aa7c633c6c162d912bf895a0e4b79d0c2ce35594948f + languageName: node + linkType: hard + "electron-to-chromium@npm:^1.4.76": version: 1.4.76 resolution: "electron-to-chromium@npm:1.4.76" @@ -8550,6 +9105,13 @@ __metadata: languageName: node linkType: hard +"entities@npm:^1.1.1, entities@npm:~1.1.1": + version: 1.1.2 + resolution: "entities@npm:1.1.2" + checksum: d537b02799bdd4784ffd714d000597ed168727bddf4885da887c5a491d735739029a00794f1998abbf35f3f6aeda32ef5c15010dca1817d401903a501b6d3e05 + languageName: node + linkType: hard + "entities@npm:^2.0.0": version: 2.0.3 resolution: "entities@npm:2.0.3" @@ -9202,6 +9764,16 @@ __metadata: languageName: node linkType: hard +"eval@npm:^0.1.0, eval@npm:^0.1.4": + version: 0.1.8 + resolution: "eval@npm:0.1.8" + dependencies: + "@types/node": "*" + require-like: ">= 0.1.1" + checksum: d005567f394cfbe60948e34982e4637d2665030f9aa7dcac581ea6f9ec6eceb87133ed3dc0ae21764aa362485c242a731dbb6371f1f1a86807c58676431e9d1a + languageName: node + linkType: hard + "event-emitter@npm:^0.3.5": version: 0.3.5 resolution: "event-emitter@npm:0.3.5" @@ -9226,6 +9798,13 @@ __metadata: languageName: node linkType: hard +"eventemitter3@npm:^4.0.4": + version: 4.0.7 + resolution: "eventemitter3@npm:4.0.7" + checksum: 1875311c42fcfe9c707b2712c32664a245629b42bb0a5a84439762dd0fd637fc54d078155ea83c2af9e0323c9ac13687e03cfba79b03af9f40c89b4960099374 + languageName: node + linkType: hard + "events@npm:^3.2.0": version: 3.3.0 resolution: "events@npm:3.3.0" @@ -9262,6 +9841,29 @@ __metadata: languageName: unknown linkType: soft +"example-mdx@workspace:examples/mdx": + version: 0.0.0-use.local + resolution: "example-mdx@workspace:examples/mdx" + dependencies: + "@mdx-js/mdx": v1 + "@mdx-js/react": v1 + "@types/react": ^17.0.40 + gatsby: ^4.9.3 + gatsby-plugin-image: ^2.9.1 + gatsby-plugin-mdx: ^3.16.1 + gatsby-plugin-react-helmet: ^5.9.0 + gatsby-plugin-react-helmet-async: ^1.2.1 + gatsby-plugin-sharp: ^4.9.1 + gatsby-plugin-typegen: "portal:../../plugin" + gatsby-source-filesystem: ^4.9.1 + gatsby-transformer-sharp: ^4.9.0 + react: ^17.0.1 + react-dom: ^17.0.1 + react-helmet-async: ^1.2.3 + typescript: ^4.6.2 + languageName: unknown + linkType: soft + "example-typescript@workspace:examples/typescript": version: 0.0.0-use.local resolution: "example-typescript@workspace:examples/typescript" @@ -9459,7 +10061,7 @@ __metadata: languageName: node linkType: hard -"extend@npm:~3.0.2": +"extend@npm:^3.0.0, extend@npm:~3.0.2": version: 3.0.2 resolution: "extend@npm:3.0.2" checksum: a50a8309ca65ea5d426382ff09f33586527882cf532931cb08ca786ea3146c0553310bda688710ff61d7668eba9f96b923fe1420cdf56a2c3eaf30fcab87b515 @@ -9944,6 +10546,17 @@ __metadata: languageName: node linkType: hard +"fs-extra@npm:^10.1.0": + version: 10.1.0 + resolution: "fs-extra@npm:10.1.0" + dependencies: + graceful-fs: ^4.2.0 + jsonfile: ^6.0.1 + universalify: ^2.0.0 + checksum: dc94ab37096f813cc3ca12f0f1b5ad6744dfed9ed21e953d72530d103cea193c2f81584a39e9dee1bea36de5ee66805678c0dddc048e8af1427ac19c00fffc50 + languageName: node + linkType: hard + "fs-minipass@npm:^2.0.0": version: 2.1.0 resolution: "fs-minipass@npm:2.1.0" @@ -10061,6 +10674,29 @@ __metadata: languageName: node linkType: hard +"gatsby-core-utils@npm:^3.16.0": + version: 3.16.0 + resolution: "gatsby-core-utils@npm:3.16.0" + dependencies: + "@babel/runtime": ^7.15.4 + ci-info: 2.0.0 + configstore: ^5.0.1 + fastq: ^1.13.0 + file-type: ^16.5.3 + fs-extra: ^10.1.0 + got: ^11.8.3 + import-from: ^4.0.0 + lmdb: 2.3.10 + lock: ^1.1.0 + node-object-hash: ^2.3.10 + proper-lockfile: ^4.1.2 + resolve-from: ^5.0.0 + tmp: ^0.2.1 + xdg-basedir: ^4.0.0 + checksum: 73df49cdd33b619571d8c25b5e54fa8665f70c1e50300596ab88d0e5ea9fa34962d3903dacf90dcba49176c03eb55af95fbb806f3780204af6c6c9dd9e5ed2ae + languageName: node + linkType: hard + "gatsby-core-utils@npm:^3.8.2": version: 3.9.0 resolution: "gatsby-core-utils@npm:3.9.0" @@ -10213,6 +10849,58 @@ __metadata: languageName: node linkType: hard +"gatsby-plugin-mdx@npm:^3.16.1": + version: 3.16.1 + resolution: "gatsby-plugin-mdx@npm:3.16.1" + dependencies: + "@babel/core": ^7.15.5 + "@babel/generator": ^7.15.4 + "@babel/helper-plugin-utils": ^7.14.0 + "@babel/plugin-proposal-object-rest-spread": ^7.14.7 + "@babel/preset-env": ^7.15.4 + "@babel/preset-react": ^7.14.0 + "@babel/runtime": ^7.15.4 + "@babel/types": ^7.15.4 + camelcase-css: ^2.0.1 + change-case: ^3.1.0 + core-js: ^3.22.3 + dataloader: ^1.4.0 + debug: ^4.3.1 + escape-string-regexp: ^1.0.5 + eval: ^0.1.4 + fs-extra: ^10.1.0 + gatsby-core-utils: ^3.16.0 + gray-matter: ^4.0.2 + json5: ^2.1.3 + loader-utils: ^1.4.0 + lodash: ^4.17.21 + mdast-util-to-string: ^1.1.0 + mdast-util-toc: ^3.1.0 + mime: ^2.4.6 + mkdirp: ^1.0.4 + p-queue: ^6.6.2 + pretty-bytes: ^5.3.0 + remark: ^10.0.1 + remark-retext: ^3.1.3 + retext-english: ^3.0.4 + slugify: ^1.4.4 + static-site-generator-webpack-plugin: ^3.4.2 + style-to-object: ^0.3.0 + underscore.string: ^3.3.5 + unified: ^8.4.2 + unist-util-map: ^1.0.5 + unist-util-remove: ^1.0.3 + unist-util-visit: ^1.4.1 + peerDependencies: + "@mdx-js/mdx": ^1.0.0 + "@mdx-js/react": ^1.0.0 + gatsby: ^4.0.0-next + react: ^16.9.0 || ^17.0.0 || ^18.0.0 + react-dom: ^16.9.0 || ^17.0.0 || ^18.0.0 + checksum: 57914efdd53b58e9775888faebd5aa26949e0c441c3233b4b704f370cf21629a0a63d729554e84573e353ab9f0e3ad3272e0188ac9fd48c52c87c13277226f5c + languageName: node + linkType: hard + "gatsby-plugin-page-creator@npm:^4.9.1": version: 4.9.1 resolution: "gatsby-plugin-page-creator@npm:4.9.1" @@ -10311,6 +10999,30 @@ __metadata: languageName: node linkType: soft +"gatsby-plugin-typegen@portal:../../plugin::locator=example-mdx%40workspace%3Aexamples%2Fmdx": + version: 0.0.0-use.local + resolution: "gatsby-plugin-typegen@portal:../../plugin::locator=example-mdx%40workspace%3Aexamples%2Fmdx" + dependencies: + "@graphql-codegen/add": ^3.1.1 + "@graphql-codegen/core": ^2.5.1 + "@graphql-codegen/flow": ^2.2.7 + "@graphql-codegen/flow-operations": ^2.2.7 + "@graphql-codegen/flow-resolvers": ^2.2.8 + "@graphql-codegen/plugin-helpers": ^2.4.2 + "@graphql-codegen/typescript": ^2.4.7 + "@graphql-codegen/typescript-operations": ^2.3.4 + "@graphql-codegen/typescript-resolvers": ^2.5.4 + "@graphql-codegen/visitor-plugin-common": ^2.7.3 + "@graphql-tools/utils": ^8.6.2 + lodash: ^4.17.21 + slugify: ^1.6.5 + xstate: ^4.30.6 + peerDependencies: + gatsby: ^4.0.0 + graphql: ^15.0.0 + languageName: node + linkType: soft + "gatsby-plugin-typegen@portal:../../plugin::locator=example-typescript%40workspace%3Aexamples%2Ftypescript": version: 0.0.0-use.local resolution: "gatsby-plugin-typegen@portal:../../plugin::locator=example-typescript%40workspace%3Aexamples%2Ftypescript" @@ -10689,7 +11401,7 @@ __metadata: languageName: node linkType: hard -"gensync@npm:^1.0.0-beta.2": +"gensync@npm:^1.0.0-beta.1, gensync@npm:^1.0.0-beta.2": version: 1.0.0-beta.2 resolution: "gensync@npm:1.0.0-beta.2" checksum: a7437e58c6be12aa6c90f7730eac7fa9833dc78872b4ad2963d2031b00a3367a93f98aec75f9aaac7220848e4026d67a8655e870b24f20a543d103c0d65952ec @@ -10806,6 +11518,13 @@ __metadata: languageName: node linkType: hard +"github-slugger@npm:^1.2.1": + version: 1.4.0 + resolution: "github-slugger@npm:1.4.0" + checksum: 4f52e7a21f5c6a4c5328f01fe4fe13ae8881fea78bfe31f9e72c4038f97e3e70d52fb85aa7633a52c501dc2486874474d9abd22aa61cbe9b113099a495551c6b + languageName: node + linkType: hard + "glob-parent@npm:^5.1.0, glob-parent@npm:~5.1.0": version: 5.1.1 resolution: "glob-parent@npm:5.1.1" @@ -11151,6 +11870,18 @@ __metadata: languageName: node linkType: hard +"gray-matter@npm:^4.0.2": + version: 4.0.3 + resolution: "gray-matter@npm:4.0.3" + dependencies: + js-yaml: ^3.13.1 + kind-of: ^6.0.2 + section-matter: ^1.0.0 + strip-bom-string: ^1.0.0 + checksum: 37717bd424344487d655392251ce8d8878a1275ee087003e61208fba3bfd59cbb73a85b2159abf742ae95e23db04964813fdc33ae18b074208428b2528205222 + languageName: node + linkType: hard + "gzip-size@npm:5.1.1": version: 5.1.1 resolution: "gzip-size@npm:5.1.1" @@ -11294,6 +12025,96 @@ __metadata: languageName: node linkType: hard +"hast-to-hyperscript@npm:^9.0.0": + version: 9.0.1 + resolution: "hast-to-hyperscript@npm:9.0.1" + dependencies: + "@types/unist": ^2.0.3 + comma-separated-tokens: ^1.0.0 + property-information: ^5.3.0 + space-separated-tokens: ^1.0.0 + style-to-object: ^0.3.0 + unist-util-is: ^4.0.0 + web-namespaces: ^1.0.0 + checksum: de570d789853018fff2fd38fc096549b9814e366b298f60c90c159a57018230eefc44d46a246027b0e2426ed9e99f2e270050bc183d5bdfe4c9487c320b392cd + languageName: node + linkType: hard + +"hast-util-from-parse5@npm:^6.0.0": + version: 6.0.1 + resolution: "hast-util-from-parse5@npm:6.0.1" + dependencies: + "@types/parse5": ^5.0.0 + hastscript: ^6.0.0 + property-information: ^5.0.0 + vfile: ^4.0.0 + vfile-location: ^3.2.0 + web-namespaces: ^1.0.0 + checksum: 4daa78201468af7779161e7caa2513c329830778e0528481ab16b3e1bcef4b831f6285b526aacdddbee802f3bd9d64df55f80f010591ea1916da535e3a923b83 + languageName: node + linkType: hard + +"hast-util-parse-selector@npm:^2.0.0": + version: 2.2.5 + resolution: "hast-util-parse-selector@npm:2.2.5" + checksum: 22ee4afbd11754562144cb3c4f3ec52524dafba4d90ee52512902d17cf11066d83b38f7bdf6ca571bbc2541f07ba30db0d234657b6ecb8ca4631587466459605 + languageName: node + linkType: hard + +"hast-util-raw@npm:6.0.1": + version: 6.0.1 + resolution: "hast-util-raw@npm:6.0.1" + dependencies: + "@types/hast": ^2.0.0 + hast-util-from-parse5: ^6.0.0 + hast-util-to-parse5: ^6.0.0 + html-void-elements: ^1.0.0 + parse5: ^6.0.0 + unist-util-position: ^3.0.0 + vfile: ^4.0.0 + web-namespaces: ^1.0.0 + xtend: ^4.0.0 + zwitch: ^1.0.0 + checksum: f6d960644f9fbbe0b92d0227b20a24d659cce021d5f9fd218e077154931b4524ee920217b7fd5a45ec2736ec1dee53de9209fe449f6f89454c01d225ff0e7851 + languageName: node + linkType: hard + +"hast-util-to-parse5@npm:^6.0.0": + version: 6.0.0 + resolution: "hast-util-to-parse5@npm:6.0.0" + dependencies: + hast-to-hyperscript: ^9.0.0 + property-information: ^5.0.0 + web-namespaces: ^1.0.0 + xtend: ^4.0.0 + zwitch: ^1.0.0 + checksum: 91a36244e37df1d63c8b7e865ab0c0a25bb7396155602be005cf71d95c348e709568f80e0f891681a3711d733ad896e70642dc41a05b574eddf2e07d285408a8 + languageName: node + linkType: hard + +"hastscript@npm:^6.0.0": + version: 6.0.0 + resolution: "hastscript@npm:6.0.0" + dependencies: + "@types/hast": ^2.0.0 + comma-separated-tokens: ^1.0.0 + hast-util-parse-selector: ^2.0.0 + property-information: ^5.0.0 + space-separated-tokens: ^1.0.0 + checksum: 5e50b85af0d2cb7c17979cb1ddca75d6b96b53019dd999b39e7833192c9004201c3cee6445065620ea05d0087d9ae147a4844e582d64868be5bc6b0232dfe52d + languageName: node + linkType: hard + +"header-case@npm:^1.0.0": + version: 1.0.1 + resolution: "header-case@npm:1.0.1" + dependencies: + no-case: ^2.2.0 + upper-case: ^1.1.3 + checksum: fe1cc9a555ec9aabc2de80f4dd961a81c534fc23951694fef34297e59b0dd60f26647148731bf0dd3fdb3a1c688089d3cd147d7038db850e25be7c0a5fabb022 + languageName: node + linkType: hard + "header-case@npm:^2.0.4": version: 2.0.4 resolution: "header-case@npm:2.0.4" @@ -11343,6 +12164,27 @@ __metadata: languageName: node linkType: hard +"html-void-elements@npm:^1.0.0": + version: 1.0.5 + resolution: "html-void-elements@npm:1.0.5" + checksum: 1a56f4f6cfbeb994c21701ff72b4b7f556fe784a70e5e554d1566ff775af83b91ea93f10664f039a67802d9f7b40d4a7f1ed20312bab47bd88d89bd792ea84ca + languageName: node + linkType: hard + +"htmlparser2@npm:^3.9.1": + version: 3.10.1 + resolution: "htmlparser2@npm:3.10.1" + dependencies: + domelementtype: ^1.3.1 + domhandler: ^2.3.0 + domutils: ^1.5.1 + entities: ^1.1.1 + inherits: ^2.0.1 + readable-stream: ^3.1.1 + checksum: 6875f7dd875aa10be17d9b130e3738cd8ed4010b1f2edaf4442c82dfafe9d9336b155870dcc39f38843cbf7fef5e4fcfdf0c4c1fd4db3a1b91a1e0ee8f6c3475 + languageName: node + linkType: hard + "htmlparser2@npm:^6.1.0": version: 6.1.0 resolution: "htmlparser2@npm:6.1.0" @@ -11597,7 +12439,7 @@ __metadata: languageName: node linkType: hard -"inherits@npm:2, inherits@npm:2.0.4, inherits@npm:^2.0.3, inherits@npm:^2.0.4, inherits@npm:~2.0.1, inherits@npm:~2.0.3": +"inherits@npm:2, inherits@npm:2.0.4, inherits@npm:^2.0.0, inherits@npm:^2.0.1, inherits@npm:^2.0.3, inherits@npm:^2.0.4, inherits@npm:~2.0.1, inherits@npm:~2.0.3": version: 2.0.4 resolution: "inherits@npm:2.0.4" checksum: 4a48a733847879d6cf6691860a6b1e3f0f4754176e4d71494c41f3475553768b10f84b5ce1d40fbd0e34e6bfbb864ee35858ad4dd2cf31e02fc4a154b724d7f1 @@ -11625,6 +12467,13 @@ __metadata: languageName: node linkType: hard +"inline-style-parser@npm:0.1.1": + version: 0.1.1 + resolution: "inline-style-parser@npm:0.1.1" + checksum: 5d545056a3e1f2bf864c928a886a0e1656a3517127d36917b973de581bd54adc91b4bf1febcb0da054f204b4934763f1a4e09308b4d55002327cf1d48ac5d966 + languageName: node + linkType: hard + "inquirer@npm:^7.0.0, inquirer@npm:^7.0.4": version: 7.3.3 resolution: "inquirer@npm:7.3.3" @@ -11708,6 +12557,30 @@ __metadata: languageName: node linkType: hard +"is-alphabetical@npm:1.0.4, is-alphabetical@npm:^1.0.0": + version: 1.0.4 + resolution: "is-alphabetical@npm:1.0.4" + checksum: 6508cce44fd348f06705d377b260974f4ce68c74000e7da4045f0d919e568226dc3ce9685c5a2af272195384df6930f748ce9213fc9f399b5d31b362c66312cb + languageName: node + linkType: hard + +"is-alphanumeric@npm:^1.0.0": + version: 1.0.0 + resolution: "is-alphanumeric@npm:1.0.0" + checksum: 2f4f4f227fe4cae977529f628021655edc172e1e5debfb3c30efd547f32e8d390c9bb7a71f3e9fea4187fe6598980072323d5a1b1abd3368379e33ba6504558c + languageName: node + linkType: hard + +"is-alphanumerical@npm:^1.0.0": + version: 1.0.4 + resolution: "is-alphanumerical@npm:1.0.4" + dependencies: + is-alphabetical: ^1.0.0 + is-decimal: ^1.0.0 + checksum: e2e491acc16fcf5b363f7c726f666a9538dba0a043665740feb45bba1652457a73441e7c5179c6768a638ed396db3437e9905f403644ec7c468fb41f4813d03f + languageName: node + linkType: hard + "is-arrayish@npm:^0.2.1": version: 0.2.1 resolution: "is-arrayish@npm:0.2.1" @@ -11754,6 +12627,13 @@ __metadata: languageName: node linkType: hard +"is-buffer@npm:^2.0.0": + version: 2.0.5 + resolution: "is-buffer@npm:2.0.5" + checksum: 764c9ad8b523a9f5a32af29bdf772b08eb48c04d2ad0a7240916ac2688c983bf5f8504bf25b35e66240edeb9d9085461f9b5dae1f3d2861c6b06a65fe983de42 + languageName: node + linkType: hard + "is-callable@npm:^1.1.4, is-callable@npm:^1.2.3": version: 1.2.3 resolution: "is-callable@npm:1.2.3" @@ -11822,6 +12702,13 @@ __metadata: languageName: node linkType: hard +"is-decimal@npm:^1.0.0": + version: 1.0.4 + resolution: "is-decimal@npm:1.0.4" + checksum: ed483a387517856dc395c68403a10201fddcc1b63dc56513fbe2fe86ab38766120090ecdbfed89223d84ca8b1cd28b0641b93cb6597b6e8f4c097a7c24e3fb96 + languageName: node + linkType: hard + "is-descriptor@npm:^0.1.0": version: 0.1.6 resolution: "is-descriptor@npm:0.1.6" @@ -11956,6 +12843,13 @@ __metadata: languageName: node linkType: hard +"is-hexadecimal@npm:^1.0.0": + version: 1.0.4 + resolution: "is-hexadecimal@npm:1.0.4" + checksum: a452e047587b6069332d83130f54d30da4faf2f2ebaa2ce6d073c27b5703d030d58ed9e0b729c8e4e5b52c6f1dab26781bb77b7bc6c7805f14f320e328ff8cd5 + languageName: node + linkType: hard + "is-installed-globally@npm:^0.4.0": version: 0.4.0 resolution: "is-installed-globally@npm:0.4.0" @@ -11975,6 +12869,15 @@ __metadata: languageName: node linkType: hard +"is-lower-case@npm:^1.1.0": + version: 1.1.3 + resolution: "is-lower-case@npm:1.1.3" + dependencies: + lower-case: ^1.1.0 + checksum: 55a2a9fe384f669ab349985bb3d1b2ab99dff4ca6d898255786ed97722680ee407a2b2c9977e05157043fd48727d71a1ca15493b58710ab076b13820ee84eed0 + languageName: node + linkType: hard + "is-lower-case@npm:^2.0.2": version: 2.0.2 resolution: "is-lower-case@npm:2.0.2" @@ -12049,6 +12952,20 @@ __metadata: languageName: node linkType: hard +"is-plain-obj@npm:^1.1.0": + version: 1.1.0 + resolution: "is-plain-obj@npm:1.1.0" + checksum: 0ee04807797aad50859652a7467481816cbb57e5cc97d813a7dcd8915da8195dc68c436010bf39d195226cde6a2d352f4b815f16f26b7bf486a5754290629931 + languageName: node + linkType: hard + +"is-plain-obj@npm:^2.0.0": + version: 2.1.0 + resolution: "is-plain-obj@npm:2.1.0" + checksum: cec9100678b0a9fe0248a81743041ed990c2d4c99f893d935545cfbc42876cbe86d207f3b895700c690ad2fa520e568c44afc1605044b535a7820c1d40e38daa + languageName: node + linkType: hard + "is-plain-object@npm:^2.0.3, is-plain-object@npm:^2.0.4": version: 2.0.4 resolution: "is-plain-object@npm:2.0.4" @@ -12195,6 +13112,15 @@ __metadata: languageName: node linkType: hard +"is-upper-case@npm:^1.1.0": + version: 1.1.2 + resolution: "is-upper-case@npm:1.1.2" + dependencies: + upper-case: ^1.1.0 + checksum: c85805dfb9c5465f1db2492ce0feddd9273398a6dc0250b4d866f9bd23dbd92d0e2b57f4560ab195b2695b8403ff989265cf637f34b7443b706e0cd4d482b5ee + languageName: node + linkType: hard + "is-upper-case@npm:^2.0.2": version: 2.0.2 resolution: "is-upper-case@npm:2.0.2" @@ -12222,6 +13148,13 @@ __metadata: languageName: node linkType: hard +"is-whitespace-character@npm:^1.0.0": + version: 1.0.4 + resolution: "is-whitespace-character@npm:1.0.4" + checksum: adab8ad9847ccfcb6f1b7000b8f622881b5ba2a09ce8be2794a6d2b10c3af325b469fc562c9fb889f468eed27be06e227ac609d0aa1e3a59b4dbcc88e2b0418e + languageName: node + linkType: hard + "is-windows@npm:^1.0.1, is-windows@npm:^1.0.2": version: 1.0.2 resolution: "is-windows@npm:1.0.2" @@ -12229,6 +13162,13 @@ __metadata: languageName: node linkType: hard +"is-word-character@npm:^1.0.0": + version: 1.0.4 + resolution: "is-word-character@npm:1.0.4" + checksum: 1821d6c6abe5bc0b3abe3fdc565d66d7c8a74ea4e93bc77b4a47d26e2e2a306d6ab7d92b353b0d2b182869e3ecaa8f4a346c62d0e31d38ebc0ceaf7cae182c3f + languageName: node + linkType: hard + "is-wsl@npm:^2.1.1": version: 2.2.0 resolution: "is-wsl@npm:2.2.0" @@ -13139,6 +14079,15 @@ __metadata: languageName: node linkType: hard +"json5@npm:^2.1.3": + version: 2.2.1 + resolution: "json5@npm:2.2.1" + bin: + json5: lib/cli.js + checksum: 74b8a23b102a6f2bf2d224797ae553a75488b5adbaee9c9b6e5ab8b510a2fc6e38f876d4c77dea672d4014a44b2399e15f2051ac2b37b87f74c0c7602003543b + languageName: node + linkType: hard + "jsonfile@npm:^6.0.1": version: 6.1.0 resolution: "jsonfile@npm:6.1.0" @@ -13314,51 +14263,127 @@ __metadata: languageName: node linkType: hard -"lmdb@npm:^2.0.2, lmdb@npm:^2.1.7, lmdb@npm:^2.2.3": - version: 2.2.4 - resolution: "lmdb@npm:2.2.4" - dependencies: - msgpackr: ^1.5.4 - nan: ^2.14.2 - node-gyp: latest - node-gyp-build: ^4.2.3 - ordered-binary: ^1.2.4 - weak-lru-cache: ^1.2.2 - checksum: df75e8ae266fb0676320366ba8847fe1e6c3c43af1c28c08eba35a35cb68c8f0be06ae305a9fecd6e2db2504dc92462da442272778facc6a8a0d953fbf0267ff +"lmdb-darwin-arm64@npm:2.3.10": + version: 2.3.10 + resolution: "lmdb-darwin-arm64@npm:2.3.10" + conditions: os=darwin & cpu=arm64 languageName: node linkType: hard -"load-bmfont@npm:^1.3.1, load-bmfont@npm:^1.4.0": - version: 1.4.1 - resolution: "load-bmfont@npm:1.4.1" - dependencies: - buffer-equal: 0.0.1 - mime: ^1.3.4 - parse-bmfont-ascii: ^1.0.3 - parse-bmfont-binary: ^1.0.5 - parse-bmfont-xml: ^1.1.4 - phin: ^2.9.1 - xhr: ^2.0.1 - xtend: ^4.0.0 - checksum: 688d932fb0dc4c9333747736ccd926261f0b91734b7bdb6ff24f8659ef068a0f0b2278084b208851afac0beec79af7bd6664fe2ed5b6c5e1db88755fc25f785e +"lmdb-darwin-x64@npm:2.3.10": + version: 2.3.10 + resolution: "lmdb-darwin-x64@npm:2.3.10" + conditions: os=darwin & cpu=x64 languageName: node linkType: hard -"loader-runner@npm:^4.2.0": - version: 4.2.0 - resolution: "loader-runner@npm:4.2.0" - checksum: e61aea8b6904b8af53d9de6f0484da86c462c0001f4511bedc837cec63deb9475cea813db62f702cd7930420ccb0e75c78112270ca5c8b61b374294f53c0cb3a +"lmdb-linux-arm64@npm:2.3.10": + version: 2.3.10 + resolution: "lmdb-linux-arm64@npm:2.3.10" + conditions: os=linux & cpu=arm64 languageName: node linkType: hard -"loader-utils@npm:2.0.0, loader-utils@npm:^2.0.0": - version: 2.0.0 - resolution: "loader-utils@npm:2.0.0" - dependencies: - big.js: ^5.2.2 - emojis-list: ^3.0.0 - json5: ^2.1.2 - checksum: 6856423131b50b6f5f259da36f498cfd7fc3c3f8bb17777cf87fdd9159e797d4ba4288d9a96415fd8da62c2906960e88f74711dee72d03a9003bddcd0d364a51 +"lmdb-linux-arm@npm:2.3.10": + version: 2.3.10 + resolution: "lmdb-linux-arm@npm:2.3.10" + conditions: os=linux & cpu=arm + languageName: node + linkType: hard + +"lmdb-linux-x64@npm:2.3.10": + version: 2.3.10 + resolution: "lmdb-linux-x64@npm:2.3.10" + conditions: os=linux & cpu=x64 + languageName: node + linkType: hard + +"lmdb-win32-x64@npm:2.3.10": + version: 2.3.10 + resolution: "lmdb-win32-x64@npm:2.3.10" + conditions: os=win32 & cpu=x64 + languageName: node + linkType: hard + +"lmdb@npm:2.3.10": + version: 2.3.10 + resolution: "lmdb@npm:2.3.10" + dependencies: + lmdb-darwin-arm64: 2.3.10 + lmdb-darwin-x64: 2.3.10 + lmdb-linux-arm: 2.3.10 + lmdb-linux-arm64: 2.3.10 + lmdb-linux-x64: 2.3.10 + lmdb-win32-x64: 2.3.10 + msgpackr: ^1.5.4 + nan: ^2.14.2 + node-addon-api: ^4.3.0 + node-gyp: latest + node-gyp-build-optional-packages: ^4.3.2 + ordered-binary: ^1.2.4 + weak-lru-cache: ^1.2.2 + dependenciesMeta: + lmdb-darwin-arm64: + optional: true + lmdb-darwin-x64: + optional: true + lmdb-linux-arm: + optional: true + lmdb-linux-arm64: + optional: true + lmdb-linux-x64: + optional: true + lmdb-win32-x64: + optional: true + checksum: 761dfb585e9b3e32f78f77a8ee61b149cb4509c88578205fd4d19236ae14f825c46a3db65a37d6e4f49532b18ab4c147dd0e7fb3d4d9e4f0ac493e9c631ca516 + languageName: node + linkType: hard + +"lmdb@npm:^2.0.2, lmdb@npm:^2.1.7, lmdb@npm:^2.2.3": + version: 2.2.4 + resolution: "lmdb@npm:2.2.4" + dependencies: + msgpackr: ^1.5.4 + nan: ^2.14.2 + node-gyp: latest + node-gyp-build: ^4.2.3 + ordered-binary: ^1.2.4 + weak-lru-cache: ^1.2.2 + checksum: df75e8ae266fb0676320366ba8847fe1e6c3c43af1c28c08eba35a35cb68c8f0be06ae305a9fecd6e2db2504dc92462da442272778facc6a8a0d953fbf0267ff + languageName: node + linkType: hard + +"load-bmfont@npm:^1.3.1, load-bmfont@npm:^1.4.0": + version: 1.4.1 + resolution: "load-bmfont@npm:1.4.1" + dependencies: + buffer-equal: 0.0.1 + mime: ^1.3.4 + parse-bmfont-ascii: ^1.0.3 + parse-bmfont-binary: ^1.0.5 + parse-bmfont-xml: ^1.1.4 + phin: ^2.9.1 + xhr: ^2.0.1 + xtend: ^4.0.0 + checksum: 688d932fb0dc4c9333747736ccd926261f0b91734b7bdb6ff24f8659ef068a0f0b2278084b208851afac0beec79af7bd6664fe2ed5b6c5e1db88755fc25f785e + languageName: node + linkType: hard + +"loader-runner@npm:^4.2.0": + version: 4.2.0 + resolution: "loader-runner@npm:4.2.0" + checksum: e61aea8b6904b8af53d9de6f0484da86c462c0001f4511bedc837cec63deb9475cea813db62f702cd7930420ccb0e75c78112270ca5c8b61b374294f53c0cb3a + languageName: node + linkType: hard + +"loader-utils@npm:2.0.0, loader-utils@npm:^2.0.0": + version: 2.0.0 + resolution: "loader-utils@npm:2.0.0" + dependencies: + big.js: ^5.2.2 + emojis-list: ^3.0.0 + json5: ^2.1.2 + checksum: 6856423131b50b6f5f259da36f498cfd7fc3c3f8bb17777cf87fdd9159e797d4ba4288d9a96415fd8da62c2906960e88f74711dee72d03a9003bddcd0d364a51 languageName: node linkType: hard @@ -13409,6 +14434,20 @@ __metadata: languageName: node linkType: hard +"lodash.assignin@npm:^4.0.9": + version: 4.2.0 + resolution: "lodash.assignin@npm:4.2.0" + checksum: 4b55bc1d65ccd7648fdba8a4316d10546929bf0beb5950830d86c559948cf170f0e65b77c95e66b45b511b85a31161714de8b2008d2537627ef3c7759afe36a6 + languageName: node + linkType: hard + +"lodash.bind@npm:^4.1.4": + version: 4.2.1 + resolution: "lodash.bind@npm:4.2.1" + checksum: cf0e41de2fca7704fc0adadc00f7fc871f8cf428990972f072136e4cd153c4d42d88c1418218121380914021c5547be05e4252e61f6280c736a2195cc8b6f4e5 + languageName: node + linkType: hard + "lodash.clonedeep@npm:4.5.0, lodash.clonedeep@npm:^4.5.0": version: 4.5.0 resolution: "lodash.clonedeep@npm:4.5.0" @@ -13430,6 +14469,13 @@ __metadata: languageName: node linkType: hard +"lodash.defaults@npm:^4.0.1": + version: 4.2.0 + resolution: "lodash.defaults@npm:4.2.0" + checksum: 84923258235592c8886e29de5491946ff8c2ae5c82a7ac5cddd2e3cb697e6fbdfbbb6efcca015795c86eec2bb953a5a2ee4016e3735a3f02720428a40efbb8f1 + languageName: node + linkType: hard + "lodash.every@npm:^4.6.0": version: 4.6.0 resolution: "lodash.every@npm:4.6.0" @@ -13437,7 +14483,14 @@ __metadata: languageName: node linkType: hard -"lodash.flatten@npm:^4.4.0": +"lodash.filter@npm:^4.4.0": + version: 4.6.0 + resolution: "lodash.filter@npm:4.6.0" + checksum: f21d245d24818e15b560cb6cadc8404a1bf98bd87d037e5e51858aad57ca2b9db64d87e450a23c8f72dd2c66968efd09b034055ce86d93eef4a4eb6f1bbaf100 + languageName: node + linkType: hard + +"lodash.flatten@npm:^4.2.0, lodash.flatten@npm:^4.4.0": version: 4.4.0 resolution: "lodash.flatten@npm:4.4.0" checksum: 0ac34a393d4b795d4b7421153d27c13ae67e08786c9cbb60ff5b732210d46f833598eee3fb3844bb10070e8488efe390ea53bb567377e0cb47e9e630bf0811cb @@ -13451,7 +14504,7 @@ __metadata: languageName: node linkType: hard -"lodash.foreach@npm:^4.5.0": +"lodash.foreach@npm:^4.3.0, lodash.foreach@npm:^4.5.0": version: 4.5.0 resolution: "lodash.foreach@npm:4.5.0" checksum: a940386b158ca0d62994db41fc16529eb8ae67138f29ced38e91f912cb5435d1b0ed34b18e6f7b9ddfc32ab676afc6dfec60d1e22633d8e3e4b33413402ab4ad @@ -13465,7 +14518,7 @@ __metadata: languageName: node linkType: hard -"lodash.map@npm:^4.6.0": +"lodash.map@npm:^4.4.0, lodash.map@npm:^4.6.0": version: 4.6.0 resolution: "lodash.map@npm:4.6.0" checksum: 7369a41d7d24d15ce3bbd02a7faa3a90f6266c38184e64932571b9b21b758bd10c04ffd117d1859be1a44156f29b94df5045eff172bf8a97fddf68bf1002d12f @@ -13486,13 +14539,41 @@ __metadata: languageName: node linkType: hard -"lodash.merge@npm:^4.6.2": +"lodash.merge@npm:^4.4.0, lodash.merge@npm:^4.6.2": version: 4.6.2 resolution: "lodash.merge@npm:4.6.2" checksum: ad580b4bdbb7ca1f7abf7e1bce63a9a0b98e370cf40194b03380a46b4ed799c9573029599caebc1b14e3f24b111aef72b96674a56cfa105e0f5ac70546cdc005 languageName: node linkType: hard +"lodash.pick@npm:^4.2.1": + version: 4.4.0 + resolution: "lodash.pick@npm:4.4.0" + checksum: 2c36cab7da6b999a20bd3373b40e31a3ef81fa264f34a6979c852c5bc8ac039379686b27380f0cb8e3781610844fafec6949c6fbbebc059c98f8fa8570e3675f + languageName: node + linkType: hard + +"lodash.reduce@npm:^4.4.0": + version: 4.6.0 + resolution: "lodash.reduce@npm:4.6.0" + checksum: 81f2a1045440554f8427f895ef479f1de5c141edd7852dde85a894879312801efae0295116e5cf830c531c1a51cdab8f3628c3ad39fa21a9874bb9158d9ea075 + languageName: node + linkType: hard + +"lodash.reject@npm:^4.4.0": + version: 4.6.0 + resolution: "lodash.reject@npm:4.6.0" + checksum: 730acc78d29ab0a60e0f3cd87bbfe9071625a835791ef66daac7a405c43ec21209fd795fdf9b7485aecead4869f645801bd65c27b9acadce80dee26393793111 + languageName: node + linkType: hard + +"lodash.some@npm:^4.4.0": + version: 4.6.0 + resolution: "lodash.some@npm:4.6.0" + checksum: 4469e76a389446d1166a29f844fb21398c36060d00258ce799710e046c55ed3c1af150c31b4856504e252bc813ba3fdcb6f255c490d9846738dd363a44665322 + languageName: node + linkType: hard + "lodash.sortby@npm:^4.7.0": version: 4.7.0 resolution: "lodash.sortby@npm:4.7.0" @@ -13507,7 +14588,7 @@ __metadata: languageName: node linkType: hard -"lodash.uniq@npm:^4.5.0": +"lodash.uniq@npm:4.5.0, lodash.uniq@npm:^4.5.0": version: 4.5.0 resolution: "lodash.uniq@npm:4.5.0" checksum: a4779b57a8d0f3c441af13d9afe7ecff22dd1b8ce1129849f71d9bbc8e8ee4e46dfb4b7c28f7ad3d67481edd6e51126e4e2a6ee276e25906d10f7140187c392d @@ -13528,6 +14609,13 @@ __metadata: languageName: node linkType: hard +"longest-streak@npm:^2.0.1": + version: 2.0.4 + resolution: "longest-streak@npm:2.0.4" + checksum: 28b8234a14963002c5c71035dee13a0a11e9e9d18ffa320fdc8796ed7437399204495702ed69cd2a7087b0af041a2a8b562829b7c1e2042e73a3374d1ecf6580 + languageName: node + linkType: hard + "loose-envify@npm:^1.0.0, loose-envify@npm:^1.1.0, loose-envify@npm:^1.4.0": version: 1.4.0 resolution: "loose-envify@npm:1.4.0" @@ -13539,6 +14627,15 @@ __metadata: languageName: node linkType: hard +"lower-case-first@npm:^1.0.0": + version: 1.0.2 + resolution: "lower-case-first@npm:1.0.2" + dependencies: + lower-case: ^1.1.2 + checksum: 97eb5ce68998153552f3627d405f6821299a45dac90423f712ccd696f77fa96e9d707a5509970c8b61b99c08947eb1e70e35cddb67bc40ea64069c574edd4f78 + languageName: node + linkType: hard + "lower-case-first@npm:^2.0.2": version: 2.0.2 resolution: "lower-case-first@npm:2.0.2" @@ -13548,6 +14645,13 @@ __metadata: languageName: node linkType: hard +"lower-case@npm:^1.1.0, lower-case@npm:^1.1.1, lower-case@npm:^1.1.2": + version: 1.1.4 + resolution: "lower-case@npm:1.1.4" + checksum: 1ca9393b5eaef94a64e3f89e38b63d15bc7182a91171e6ad1550f51d710ec941540a065b274188f2e6b4576110cc2d11b50bc4bb7c603a040ddeb1db4ca95197 + languageName: node + linkType: hard + "lower-case@npm:^2.0.2": version: 2.0.2 resolution: "lower-case@npm:2.0.2" @@ -13669,6 +14773,20 @@ __metadata: languageName: node linkType: hard +"markdown-escapes@npm:^1.0.0": + version: 1.0.4 + resolution: "markdown-escapes@npm:1.0.4" + checksum: 6833a93d72d3f70a500658872312c6fa8015c20cc835a85ae6901fa232683fbc6ed7118ebe920fea7c80039a560f339c026597d96eee0e9de602a36921804997 + languageName: node + linkType: hard + +"markdown-table@npm:^1.1.0": + version: 1.1.3 + resolution: "markdown-table@npm:1.1.3" + checksum: 292e8c956ae833c2ccb0a55cd8d87980cd657ab11cd9ff63c3fcc4d3a518d3b3882ba07410b8f477ba9e30b3f70658677e4e8acf61816dd6cfdd1f6293130664 + languageName: node + linkType: hard + "md5-file@npm:^5.0.0": version: 5.0.0 resolution: "md5-file@npm:5.0.0" @@ -13678,6 +14796,80 @@ __metadata: languageName: node linkType: hard +"mdast-squeeze-paragraphs@npm:^4.0.0": + version: 4.0.0 + resolution: "mdast-squeeze-paragraphs@npm:4.0.0" + dependencies: + unist-util-remove: ^2.0.0 + checksum: dfe8ec8e8a62171f020e82b088cc35cb9da787736dc133a3b45ce8811782a93e69bf06d147072e281079f09fac67be8a36153ffffd9bfbf89ed284e4c4f56f75 + languageName: node + linkType: hard + +"mdast-util-compact@npm:^1.0.0": + version: 1.0.4 + resolution: "mdast-util-compact@npm:1.0.4" + dependencies: + unist-util-visit: ^1.1.0 + checksum: 5c2eec96bd9f231d54733bbfb4fbd83ec8e1a6ddd9084a79f502614b6868a27be8ac75946ba5871c3d291673904da1fa63a5738de9c98ac1dbfd011ebb57d853 + languageName: node + linkType: hard + +"mdast-util-definitions@npm:^4.0.0": + version: 4.0.0 + resolution: "mdast-util-definitions@npm:4.0.0" + dependencies: + unist-util-visit: ^2.0.0 + checksum: 2325f20b82b3fb8cb5fda77038ee0bbdd44f82cfca7c48a854724b58bc1fe5919630a3ce7c45e210726df59d46c881d020b2da7a493bfd1ee36eb2bbfef5d78e + languageName: node + linkType: hard + +"mdast-util-to-hast@npm:10.0.1": + version: 10.0.1 + resolution: "mdast-util-to-hast@npm:10.0.1" + dependencies: + "@types/mdast": ^3.0.0 + "@types/unist": ^2.0.0 + mdast-util-definitions: ^4.0.0 + mdurl: ^1.0.0 + unist-builder: ^2.0.0 + unist-util-generated: ^1.0.0 + unist-util-position: ^3.0.0 + unist-util-visit: ^2.0.0 + checksum: e5f385757df7e9b37db4d6f326bf7b4fc1b40f9ad01fc335686578f44abe0ba46d3e60af4d5e5b763556d02e65069ef9a09c49db049b52659203a43e7fa9084d + languageName: node + linkType: hard + +"mdast-util-to-nlcst@npm:^3.2.0": + version: 3.2.3 + resolution: "mdast-util-to-nlcst@npm:3.2.3" + dependencies: + nlcst-to-string: ^2.0.0 + repeat-string: ^1.5.2 + unist-util-position: ^3.0.0 + vfile-location: ^2.0.0 + checksum: 4de57854e664e457005945d0ee66bc29ebe3f7f6916263a1232ab54b83eea81700cd5be2dd19c81cdd87a725bf5f7a042080a882c7c91d1e9b6bb413cd382aff + languageName: node + linkType: hard + +"mdast-util-to-string@npm:^1.0.5, mdast-util-to-string@npm:^1.1.0": + version: 1.1.0 + resolution: "mdast-util-to-string@npm:1.1.0" + checksum: eec1eb283f3341376c8398b67ce512a11ab3e3191e3dbd5644d32a26784eac8d5f6d0b0fb81193af00d75a2c545cde765c8b03e966bd890076efb5d357fb4fe2 + languageName: node + linkType: hard + +"mdast-util-toc@npm:^3.1.0": + version: 3.1.0 + resolution: "mdast-util-toc@npm:3.1.0" + dependencies: + github-slugger: ^1.2.1 + mdast-util-to-string: ^1.0.5 + unist-util-is: ^2.1.2 + unist-util-visit: ^1.1.0 + checksum: 7acf20c6a73d1eab781dd09726db8c05309d950d7ac06227b747a63feec87886d9d8a46b2e4974bd6355ff820cfb737acc74614c310c2df05e577010209770a3 + languageName: node + linkType: hard + "mdn-data@npm:2.0.14": version: 2.0.14 resolution: "mdn-data@npm:2.0.14" @@ -13692,6 +14884,13 @@ __metadata: languageName: node linkType: hard +"mdurl@npm:^1.0.0": + version: 1.0.1 + resolution: "mdurl@npm:1.0.1" + checksum: 71731ecba943926bfbf9f9b51e28b5945f9411c4eda80894221b47cc105afa43ba2da820732b436f0798fd3edbbffcd1fc1415843c41a87fea08a41cc1e3d02b + languageName: node + linkType: hard + "meant@npm:^1.0.3": version: 1.0.3 resolution: "meant@npm:1.0.3" @@ -13867,7 +15066,7 @@ __metadata: languageName: node linkType: hard -"mime@npm:^2.5.2": +"mime@npm:^2.4.6, mime@npm:^2.5.2": version: 2.6.0 resolution: "mime@npm:2.6.0" bin: @@ -14014,7 +15213,7 @@ __metadata: languageName: node linkType: hard -"mkdirp@npm:^1.0.3": +"mkdirp@npm:^1.0.3, mkdirp@npm:^1.0.4": version: 1.0.4 resolution: "mkdirp@npm:1.0.4" bin: @@ -14205,6 +15404,22 @@ __metadata: languageName: node linkType: hard +"nlcst-to-string@npm:^2.0.0": + version: 2.0.4 + resolution: "nlcst-to-string@npm:2.0.4" + checksum: 251b5d894ca13893bfc9c4e892a0656a2effb9a053becf8c94d9655ce3d5acc50811f535b0e77cc2156f45ac4addcef29a9654fc4e5841337c86aa08fa2ea878 + languageName: node + linkType: hard + +"no-case@npm:^2.2.0, no-case@npm:^2.3.2": + version: 2.3.2 + resolution: "no-case@npm:2.3.2" + dependencies: + lower-case: ^1.1.1 + checksum: 856487731936fef44377ca74fdc5076464aba2e0734b56a4aa2b2a23d5b154806b591b9b2465faa59bb982e2b5c9391e3685400957fb4eeb38f480525adcf3dd + languageName: node + linkType: hard + "no-case@npm:^3.0.4": version: 3.0.4 resolution: "no-case@npm:3.0.4" @@ -14263,6 +15478,17 @@ __metadata: languageName: node linkType: hard +"node-gyp-build-optional-packages@npm:^4.3.2": + version: 4.3.5 + resolution: "node-gyp-build-optional-packages@npm:4.3.5" + bin: + node-gyp-build-optional-packages: bin.js + node-gyp-build-optional-packages-optional: optional.js + node-gyp-build-optional-packages-test: build-test.js + checksum: 73420a3ee2697954eb373f1f473ecc23f691c986973cf087eff9a6fb48bec60e16334ec543383104280a3dcded57741259cb6e00fc2024f073265f5b33dae8e2 + languageName: node + linkType: hard + "node-gyp-build@npm:^4.2.3, node-gyp-build@npm:^4.3.0": version: 4.3.0 resolution: "node-gyp-build@npm:4.3.0" @@ -14322,6 +15548,13 @@ __metadata: languageName: node linkType: hard +"node-releases@npm:^2.0.5": + version: 2.0.5 + resolution: "node-releases@npm:2.0.5" + checksum: e85d949addd19f8827f32569d2be5751e7812ccf6cc47879d49f79b5234ff4982225e39a3929315f96370823b070640fb04d79fc0ddec8b515a969a03493a42f + languageName: node + linkType: hard + "nopt@npm:^4.0.3": version: 4.0.3 resolution: "nopt@npm:4.0.3" @@ -14401,7 +15634,7 @@ __metadata: languageName: node linkType: hard -"nth-check@npm:^1.0.2": +"nth-check@npm:^1.0.2, nth-check@npm:~1.0.1": version: 1.0.2 resolution: "nth-check@npm:1.0.2" dependencies: @@ -14459,7 +15692,7 @@ __metadata: languageName: node linkType: hard -"object-assign@npm:^4, object-assign@npm:^4.1.0, object-assign@npm:^4.1.1": +"object-assign@npm:^4, object-assign@npm:^4.0.1, object-assign@npm:^4.1.0, object-assign@npm:^4.1.1": version: 4.1.1 resolution: "object-assign@npm:4.1.1" checksum: fcc6e4ea8c7fe48abfbb552578b1c53e0d194086e2e6bbbf59e0a536381a292f39943c6e9628af05b5528aa5e3318bb30d6b2e53cadaf5b8fe9e12c4b69af23f @@ -14829,6 +16062,25 @@ __metadata: languageName: node linkType: hard +"p-queue@npm:^6.6.2": + version: 6.6.2 + resolution: "p-queue@npm:6.6.2" + dependencies: + eventemitter3: ^4.0.4 + p-timeout: ^3.2.0 + checksum: 832642fcc4ab6477b43e6d7c30209ab10952969ed211c6d6f2931be8a4f9935e3578c72e8cce053dc34f2eb6941a408a2c516a54904e989851a1a209cf19761c + languageName: node + linkType: hard + +"p-timeout@npm:^3.2.0": + version: 3.2.0 + resolution: "p-timeout@npm:3.2.0" + dependencies: + p-finally: ^1.0.0 + checksum: 3dd0eaa048780a6f23e5855df3dd45c7beacff1f820476c1d0d1bcd6648e3298752ba2c877aa1c92f6453c7dd23faaf13d9f5149fc14c0598a142e2c5e8d649c + languageName: node + linkType: hard + "p-try@npm:^1.0.0": version: 1.0.0 resolution: "p-try@npm:1.0.0" @@ -14862,6 +16114,15 @@ __metadata: languageName: node linkType: hard +"param-case@npm:^2.1.0": + version: 2.1.1 + resolution: "param-case@npm:2.1.1" + dependencies: + no-case: ^2.2.0 + checksum: 3a63dcb8d8dc7995a612de061afdc7bb6fe7bd0e6db994db8d4cae999ed879859fd24389090e1a0d93f4c9207ebf8c048c870f468a3f4767161753e03cb9ab58 + languageName: node + linkType: hard + "param-case@npm:^3.0.4": version: 3.0.4 resolution: "param-case@npm:3.0.4" @@ -14905,6 +16166,46 @@ __metadata: languageName: node linkType: hard +"parse-english@npm:^4.0.0": + version: 4.2.0 + resolution: "parse-english@npm:4.2.0" + dependencies: + nlcst-to-string: ^2.0.0 + parse-latin: ^4.0.0 + unist-util-modify-children: ^2.0.0 + unist-util-visit-children: ^1.0.0 + checksum: 38e3302585d47d9a90011e437006eed4452f033fcdaf1b6904bbd36441323d6ecbd4549e5f0a4ae5bbfaa636cc02eddd4620d6121ff27522e0f955ed95000899 + languageName: node + linkType: hard + +"parse-entities@npm:^1.0.2, parse-entities@npm:^1.1.0": + version: 1.2.2 + resolution: "parse-entities@npm:1.2.2" + dependencies: + character-entities: ^1.0.0 + character-entities-legacy: ^1.0.0 + character-reference-invalid: ^1.0.0 + is-alphanumerical: ^1.0.0 + is-decimal: ^1.0.0 + is-hexadecimal: ^1.0.0 + checksum: abf070c67912647a016efd5547607ecddc7e1963e59fc20c76797419b6699a3a9a522c067efa509feefedd37afd6c2a44200b3e5546a023a973c90e6e650b68a + languageName: node + linkType: hard + +"parse-entities@npm:^2.0.0": + version: 2.0.0 + resolution: "parse-entities@npm:2.0.0" + dependencies: + character-entities: ^1.0.0 + character-entities-legacy: ^1.0.0 + character-reference-invalid: ^1.0.0 + is-alphanumerical: ^1.0.0 + is-decimal: ^1.0.0 + is-hexadecimal: ^1.0.0 + checksum: 7addfd3e7d747521afac33c8121a5f23043c6973809756920d37e806639b4898385d386fcf4b3c8e2ecf1bc28aac5ae97df0b112d5042034efbe80f44081ebce + languageName: node + linkType: hard + "parse-filepath@npm:^1.0.2": version: 1.0.2 resolution: "parse-filepath@npm:1.0.2" @@ -14947,6 +16248,17 @@ __metadata: languageName: node linkType: hard +"parse-latin@npm:^4.0.0": + version: 4.3.0 + resolution: "parse-latin@npm:4.3.0" + dependencies: + nlcst-to-string: ^2.0.0 + unist-util-modify-children: ^2.0.0 + unist-util-visit-children: ^1.0.0 + checksum: 4318342b85350f4da4dfa9613119648d4facbe61d653ef06e507f6c314b4d502b1d1956b0be2b71c9a3a863b9b6d42ce1a7af4680841d5b5d3d60097a288996b + languageName: node + linkType: hard + "parse-path@npm:^4.0.0": version: 4.0.2 resolution: "parse-path@npm:4.0.2" @@ -14969,7 +16281,7 @@ __metadata: languageName: node linkType: hard -"parse5@npm:6.0.1": +"parse5@npm:6.0.1, parse5@npm:^6.0.0": version: 6.0.1 resolution: "parse5@npm:6.0.1" checksum: 7d569a176c5460897f7c8f3377eff640d54132b9be51ae8a8fa4979af940830b2b0c296ce75e5bd8f4041520aadde13170dbdec44889975f906098ea0002f4bd @@ -14997,6 +16309,16 @@ __metadata: languageName: node linkType: hard +"pascal-case@npm:^2.0.0": + version: 2.0.1 + resolution: "pascal-case@npm:2.0.1" + dependencies: + camel-case: ^3.0.0 + upper-case-first: ^1.1.0 + checksum: 4c539bf556572812f64a02fc6b544f3d2b51db12aed484e5162ed7f8ac2b366775d15e536091c890d71d82bdf9153128321f21574721b3a984bd85df9e519a35 + languageName: node + linkType: hard + "pascal-case@npm:^3.1.1, pascal-case@npm:^3.1.2": version: 3.1.2 resolution: "pascal-case@npm:3.1.2" @@ -15024,6 +16346,15 @@ __metadata: languageName: node linkType: hard +"path-case@npm:^2.1.0": + version: 2.1.1 + resolution: "path-case@npm:2.1.1" + dependencies: + no-case: ^2.2.0 + checksum: eb1da508c28378715cbe4ce054ee5f83a570c5010f041f4cfb439c811f7a78e36c46f26a8d59b2594c3882b53db06ef26195519c27f86523dc5d19c2e29f306d + languageName: node + linkType: hard + "path-case@npm:^3.0.4": version: 3.0.4 resolution: "path-case@npm:3.0.4" @@ -15720,7 +17051,7 @@ __metadata: languageName: node linkType: hard -"pretty-bytes@npm:^5.4.1": +"pretty-bytes@npm:^5.3.0, pretty-bytes@npm:^5.4.1": version: 5.6.0 resolution: "pretty-bytes@npm:5.6.0" checksum: 9c082500d1e93434b5b291bd651662936b8bd6204ec9fa17d563116a192d6d86b98f6d328526b4e8d783c07d5499e2614a807520249692da9ec81564b2f439cd @@ -15854,6 +17185,15 @@ __metadata: languageName: node linkType: hard +"property-information@npm:^5.0.0, property-information@npm:^5.3.0": + version: 5.6.0 + resolution: "property-information@npm:5.6.0" + dependencies: + xtend: ^4.0.0 + checksum: fcf87c6542e59a8bbe31ca0b3255a4a63ac1059b01b04469680288998bcfa97f341ca989566adbb63975f4d85339030b82320c324a511532d390910d1c583893 + languageName: node + linkType: hard + "protocols@npm:^1.1.0, protocols@npm:^1.4.0": version: 1.4.8 resolution: "protocols@npm:1.4.8" @@ -15895,6 +17235,13 @@ __metadata: languageName: node linkType: hard +"punycode@npm:1.3.2": + version: 1.3.2 + resolution: "punycode@npm:1.3.2" + checksum: b8807fd594b1db33335692d1f03e8beeddde6fda7fbb4a2e32925d88d20a3aa4cd8dcc0c109ccaccbd2ba761c208dfaaada83007087ea8bfb0129c9ef1b99ed6 + languageName: node + linkType: hard + "punycode@npm:^2.1.0, punycode@npm:^2.1.1": version: 2.1.1 resolution: "punycode@npm:2.1.1" @@ -15944,7 +17291,7 @@ __metadata: languageName: node linkType: hard -"querystring@npm:^0.2.0": +"querystring@npm:0.2.0, querystring@npm:^0.2.0": version: 0.2.0 resolution: "querystring@npm:0.2.0" checksum: 8258d6734f19be27e93f601758858c299bdebe71147909e367101ba459b95446fbe5b975bf9beb76390156a592b6f4ac3a68b6087cea165c259705b8b4e56a69 @@ -16457,40 +17804,168 @@ __metadata: languageName: node linkType: hard -"remove-trailing-separator@npm:^1.0.1": - version: 1.1.0 - resolution: "remove-trailing-separator@npm:1.1.0" - checksum: d3c20b5a2d987db13e1cca9385d56ecfa1641bae143b620835ac02a6b70ab88f68f117a0021838db826c57b31373d609d52e4f31aca75fc490c862732d595419 +"remark-footnotes@npm:2.0.0": + version: 2.0.0 + resolution: "remark-footnotes@npm:2.0.0" + checksum: f2f87ffd6fe25892373c7164d6584a7cb03ab0ea4f186af493a73df519e24b72998a556e7f16cb996f18426cdb80556b95ff252769e252cf3ccba0fd2ca20621 languageName: node linkType: hard -"renderkid@npm:^2.0.4": - version: 2.0.7 - resolution: "renderkid@npm:2.0.7" +"remark-mdx@npm:1.6.22": + version: 1.6.22 + resolution: "remark-mdx@npm:1.6.22" dependencies: - css-select: ^4.1.3 - dom-converter: ^0.2.0 - htmlparser2: ^6.1.0 - lodash: ^4.17.21 - strip-ansi: ^3.0.1 - checksum: d3d7562531fb8104154d4aa6aa977707783616318014088378a6c5bbc36318ada9289543d380ede707e531b7f5b96229e87d1b8944f675e5ec3686e62692c7c7 + "@babel/core": 7.12.9 + "@babel/helper-plugin-utils": 7.10.4 + "@babel/plugin-proposal-object-rest-spread": 7.12.1 + "@babel/plugin-syntax-jsx": 7.12.1 + "@mdx-js/util": 1.6.22 + is-alphabetical: 1.0.4 + remark-parse: 8.0.3 + unified: 9.2.0 + checksum: 45e62f8a821c37261f94448d54f295de1c5c393f762ff96cd4d4b730715037fafeb6c89ef94adf6a10a09edfa72104afe1431b93b5ae5e40ce2a7677e133c3d9 languageName: node linkType: hard -"repeat-element@npm:^1.1.2": - version: 1.1.3 - resolution: "repeat-element@npm:1.1.3" - checksum: 0743a136b484117016ad587577ede60a3ffe604b74e57bd5d7d0aa041fe2f1c956e6b2f3ff83c86f4db9fac022c3fa2da8e58b9d3618b8b4cb1c3d041bcc422f - languageName: node - linkType: hard +"remark-parse@npm:8.0.3": + version: 8.0.3 + resolution: "remark-parse@npm:8.0.3" + dependencies: + ccount: ^1.0.0 + collapse-white-space: ^1.0.2 + is-alphabetical: ^1.0.0 + is-decimal: ^1.0.0 + is-whitespace-character: ^1.0.0 + is-word-character: ^1.0.0 + markdown-escapes: ^1.0.0 + parse-entities: ^2.0.0 + repeat-string: ^1.5.4 + state-toggle: ^1.0.0 + trim: 0.0.1 + trim-trailing-lines: ^1.0.0 + unherit: ^1.0.4 + unist-util-remove-position: ^2.0.0 + vfile-location: ^3.0.0 + xtend: ^4.0.1 + checksum: 2dfea250e7606ddfc9e223b9f41e0b115c5c701be4bd35181beaadd46ee59816bc00aadc6085a420f8df00b991ada73b590ea7fd34ace14557de4a0a41805be5 + languageName: node + linkType: hard + +"remark-parse@npm:^6.0.0": + version: 6.0.3 + resolution: "remark-parse@npm:6.0.3" + dependencies: + collapse-white-space: ^1.0.2 + is-alphabetical: ^1.0.0 + is-decimal: ^1.0.0 + is-whitespace-character: ^1.0.0 + is-word-character: ^1.0.0 + markdown-escapes: ^1.0.0 + parse-entities: ^1.1.0 + repeat-string: ^1.5.4 + state-toggle: ^1.0.0 + trim: 0.0.1 + trim-trailing-lines: ^1.0.0 + unherit: ^1.0.4 + unist-util-remove-position: ^1.0.0 + vfile-location: ^2.0.0 + xtend: ^4.0.1 + checksum: 10310eebdbbc202d6102894228cae42c60027a7b96a291410c17d9de32739ad84cc9fb6176ee7b27e61f79747513e042dcdaa10c924d5b985b084f4c1f755966 + languageName: node + linkType: hard + +"remark-retext@npm:^3.1.3": + version: 3.1.3 + resolution: "remark-retext@npm:3.1.3" + dependencies: + mdast-util-to-nlcst: ^3.2.0 + checksum: e477b758e1c10c524c73744df214de893ab9a502ff52a8d18d732d7194b809d223c5e1da2dc0a526a804d4b2b7ea8532e2b2187531323d9cb54529bba2d78901 + languageName: node + linkType: hard + +"remark-squeeze-paragraphs@npm:4.0.0": + version: 4.0.0 + resolution: "remark-squeeze-paragraphs@npm:4.0.0" + dependencies: + mdast-squeeze-paragraphs: ^4.0.0 + checksum: 2071eb74d0ecfefb152c4932690a9fd950c3f9f798a676f1378a16db051da68fb20bf288688cc153ba5019dded35408ff45a31dfe9686eaa7a9f1df9edbb6c81 + languageName: node + linkType: hard + +"remark-stringify@npm:^6.0.0": + version: 6.0.4 + resolution: "remark-stringify@npm:6.0.4" + dependencies: + ccount: ^1.0.0 + is-alphanumeric: ^1.0.0 + is-decimal: ^1.0.0 + is-whitespace-character: ^1.0.0 + longest-streak: ^2.0.1 + markdown-escapes: ^1.0.0 + markdown-table: ^1.1.0 + mdast-util-compact: ^1.0.0 + parse-entities: ^1.0.2 + repeat-string: ^1.5.4 + state-toggle: ^1.0.0 + stringify-entities: ^1.0.1 + unherit: ^1.0.4 + xtend: ^4.0.1 + checksum: 177bf04062c4c2cf6d207e7a57b0fc19200a20b2a36f8a61a54b3df98c547353597bcc8a7ed2f249f41876559f19c8a1476627870babecce2f5b7ab768d6ca79 + languageName: node + linkType: hard + +"remark@npm:^10.0.1": + version: 10.0.1 + resolution: "remark@npm:10.0.1" + dependencies: + remark-parse: ^6.0.0 + remark-stringify: ^6.0.0 + unified: ^7.0.0 + checksum: 97a871cf2bcfd51f0f267093a115ebd0053712a32495a334e349c7612b2bd0c611aca92d490df44934d4642759a428db58779a151228b158580d4aa6e937b472 + languageName: node + linkType: hard + +"remove-trailing-separator@npm:^1.0.1": + version: 1.1.0 + resolution: "remove-trailing-separator@npm:1.1.0" + checksum: d3c20b5a2d987db13e1cca9385d56ecfa1641bae143b620835ac02a6b70ab88f68f117a0021838db826c57b31373d609d52e4f31aca75fc490c862732d595419 + languageName: node + linkType: hard + +"renderkid@npm:^2.0.4": + version: 2.0.7 + resolution: "renderkid@npm:2.0.7" + dependencies: + css-select: ^4.1.3 + dom-converter: ^0.2.0 + htmlparser2: ^6.1.0 + lodash: ^4.17.21 + strip-ansi: ^3.0.1 + checksum: d3d7562531fb8104154d4aa6aa977707783616318014088378a6c5bbc36318ada9289543d380ede707e531b7f5b96229e87d1b8944f675e5ec3686e62692c7c7 + languageName: node + linkType: hard + +"repeat-element@npm:^1.1.2": + version: 1.1.3 + resolution: "repeat-element@npm:1.1.3" + checksum: 0743a136b484117016ad587577ede60a3ffe604b74e57bd5d7d0aa041fe2f1c956e6b2f3ff83c86f4db9fac022c3fa2da8e58b9d3618b8b4cb1c3d041bcc422f + languageName: node + linkType: hard -"repeat-string@npm:^1.6.1": +"repeat-string@npm:^1.5.2, repeat-string@npm:^1.5.4, repeat-string@npm:^1.6.1": version: 1.6.1 resolution: "repeat-string@npm:1.6.1" checksum: 1b809fc6db97decdc68f5b12c4d1a671c8e3f65ec4a40c238bc5200e44e85bcc52a54f78268ab9c29fcf5fe4f1343e805420056d1f30fa9a9ee4c2d93e3cc6c0 languageName: node linkType: hard +"replace-ext@npm:1.0.0": + version: 1.0.0 + resolution: "replace-ext@npm:1.0.0" + checksum: 123e5c28046e4f0b82e1cdedb0340058d362ddbd8e17d98e5068bbacc3b3b397b4d8e3c69d603f9c4c0f6a6494852064396570c44f9426a4673dba63850fab34 + languageName: node + linkType: hard + "request@npm:^2.88.2": version: 2.88.2 resolution: "request@npm:2.88.2" @@ -16533,6 +18008,13 @@ __metadata: languageName: node linkType: hard +"require-like@npm:>= 0.1.1": + version: 0.1.2 + resolution: "require-like@npm:0.1.2" + checksum: edb8331f05fd807381a75b76f6cca9f0ce8acaa2e910b7e116541799aa970bfbc64fde5fd6adb3a6917dba346f8386ebbddb81614c24e8dad1b4290c7af9535e + languageName: node + linkType: hard + "require-main-filename@npm:^2.0.0": version: 2.0.0 resolution: "require-main-filename@npm:2.0.0" @@ -16628,7 +18110,7 @@ resolve@^2.0.0-next.3: languageName: node linkType: hard -"resolve@npm:^1.14.2": +"resolve@npm:^1.14.2, resolve@npm:^1.3.2": version: 1.22.0 resolution: "resolve@npm:1.22.0" dependencies: @@ -16651,7 +18133,7 @@ resolve@^2.0.0-next.3: languageName: node linkType: hard -"resolve@patch:resolve@^1.14.2#~builtin": +"resolve@patch:resolve@^1.14.2#~builtin, resolve@patch:resolve@^1.3.2#~builtin": version: 1.22.0 resolution: "resolve@patch:resolve@npm%3A1.22.0#~builtin::version=1.22.0&hash=07638b" dependencies: @@ -16719,6 +18201,16 @@ resolve@^2.0.0-next.3: languageName: node linkType: hard +"retext-english@npm:^3.0.4": + version: 3.0.4 + resolution: "retext-english@npm:3.0.4" + dependencies: + parse-english: ^4.0.0 + unherit: ^1.0.4 + checksum: 0a8f164753eb187a4c02a4e55bf70bf72a3a41055a8d6e2b864fb7e601ceae20e31e726d14e8aca69b769e26056e6f15a76e36ac74c6ad24165ffe0d24f5c34c + languageName: node + linkType: hard + "retry@npm:^0.12.0": version: 0.12.0 resolution: "retry@npm:0.12.0" @@ -16867,6 +18359,16 @@ resolve@^2.0.0-next.3: languageName: node linkType: hard +"section-matter@npm:^1.0.0": + version: 1.0.0 + resolution: "section-matter@npm:1.0.0" + dependencies: + extend-shallow: ^2.0.1 + kind-of: ^6.0.0 + checksum: 3cc4131705493b2955729b075dcf562359bba66183debb0332752dc9cad35616f6da7a23e42b6cab45cd2e4bb5cda113e9e84c8f05aee77adb6b0289a0229101 + languageName: node + linkType: hard + "semver-diff@npm:^3.1.1": version: 3.1.1 resolution: "semver-diff@npm:3.1.1" @@ -16885,7 +18387,7 @@ resolve@^2.0.0-next.3: languageName: node linkType: hard -"semver@npm:^5.5.0, semver@npm:^5.6.0, semver@npm:^5.7.1": +"semver@npm:^5.4.1, semver@npm:^5.5.0, semver@npm:^5.6.0, semver@npm:^5.7.1": version: 5.7.1 resolution: "semver@npm:5.7.1" bin: @@ -16935,6 +18437,16 @@ resolve@^2.0.0-next.3: languageName: node linkType: hard +"sentence-case@npm:^2.1.0": + version: 2.1.1 + resolution: "sentence-case@npm:2.1.1" + dependencies: + no-case: ^2.2.0 + upper-case-first: ^1.1.2 + checksum: ce5ca48804051e056a6956ad75a1a7d833e5d8f5021a015d380a22d3cf04496d5238de2e5c876d9701a9218633052c3a65911ca1b6460d36a41ecad46e81d139 + languageName: node + linkType: hard + "sentence-case@npm:^3.0.4": version: 3.0.4 resolution: "sentence-case@npm:3.0.4" @@ -17186,13 +18698,22 @@ resolve@^2.0.0-next.3: languageName: node linkType: hard -"slugify@npm:^1.6.1, slugify@npm:^1.6.5": +"slugify@npm:^1.4.4, slugify@npm:^1.6.1, slugify@npm:^1.6.5": version: 1.6.5 resolution: "slugify@npm:1.6.5" checksum: a955a1b600201030f4c1daa9bb74a17d4402a0693fc40978bbd17e44e64fd72dad3bac4037422aa8aed55b5170edd57f3f4cd8f59ba331f5cf0f10f1a7795609 languageName: node linkType: hard +"snake-case@npm:^2.1.0": + version: 2.1.0 + resolution: "snake-case@npm:2.1.0" + dependencies: + no-case: ^2.2.0 + checksum: 7e42b4841103be4dd050b2f57f5cb423d5164524c1cb3d81efda9809265a82a2d02ddf44361beae37d75a239308e6414be85fe441dc48cd70c708cb975387d10 + languageName: node + linkType: hard + "snake-case@npm:^3.0.4": version: 3.0.4 resolution: "snake-case@npm:3.0.4" @@ -17289,6 +18810,13 @@ resolve@^2.0.0-next.3: languageName: node linkType: hard +"source-list-map@npm:^1.1.1": + version: 1.1.2 + resolution: "source-list-map@npm:1.1.2" + checksum: faa96ae931d45fc04d55c374b287d89e7ae88fdde2eb9f1cc80b7147a0d2f17854647ec4af0084240eabc507cb9cfd7669e311bdaa3dd29c07a251f1d13c4fb5 + languageName: node + linkType: hard + "source-list-map@npm:^2.0.0": version: 2.0.1 resolution: "source-list-map@npm:2.0.1" @@ -17350,7 +18878,7 @@ resolve@^2.0.0-next.3: languageName: node linkType: hard -"source-map@npm:^0.5.0, source-map@npm:^0.5.6": +"source-map@npm:^0.5.0, source-map@npm:^0.5.6, source-map@npm:~0.5.3": version: 0.5.7 resolution: "source-map@npm:0.5.7" checksum: 5dc2043b93d2f194142c7f38f74a24670cd7a0063acdaf4bf01d2964b402257ae843c2a8fa822ad5b71013b5fcafa55af7421383da919752f22ff488bc553f4d @@ -17364,6 +18892,13 @@ resolve@^2.0.0-next.3: languageName: node linkType: hard +"space-separated-tokens@npm:^1.0.0": + version: 1.1.5 + resolution: "space-separated-tokens@npm:1.1.5" + checksum: 8ef68f1cfa8ccad316b7f8d0df0919d0f1f6d32101e8faeee34ea3a923ce8509c1ad562f57388585ee4951e92d27afa211ed0a077d3d5995b5ba9180331be708 + languageName: node + linkType: hard + "spawn-command@npm:^0.0.2-1": version: 0.0.2 resolution: "spawn-command@npm:0.0.2" @@ -17396,6 +18931,13 @@ resolve@^2.0.0-next.3: languageName: node linkType: hard +"sprintf-js@npm:^1.1.1": + version: 1.1.2 + resolution: "sprintf-js@npm:1.1.2" + checksum: d4bb46464632b335e5faed381bd331157e0af64915a98ede833452663bc672823db49d7531c32d58798e85236581fb7342fd0270531ffc8f914e186187bf1c90 + languageName: node + linkType: hard + "sprintf-js@npm:~1.0.2": version: 1.0.3 resolution: "sprintf-js@npm:1.0.3" @@ -17480,6 +19022,13 @@ resolve@^2.0.0-next.3: languageName: node linkType: hard +"state-toggle@npm:^1.0.0": + version: 1.0.3 + resolution: "state-toggle@npm:1.0.3" + checksum: 17398af928413e8d8b866cf0c81fd1b1348bb7d65d8983126ff6ff2317a80d6ee023484fba0c54d8169f5aa544f125434a650ae3a71eddc935cae307d4692b4f + languageName: node + linkType: hard + "static-extend@npm:^0.1.1": version: 0.1.2 resolution: "static-extend@npm:0.1.2" @@ -17490,6 +19039,19 @@ resolve@^2.0.0-next.3: languageName: node linkType: hard +"static-site-generator-webpack-plugin@npm:^3.4.2": + version: 3.4.2 + resolution: "static-site-generator-webpack-plugin@npm:3.4.2" + dependencies: + bluebird: ^3.0.5 + cheerio: ^0.22.0 + eval: ^0.1.0 + url: ^0.11.0 + webpack-sources: ^0.2.0 + checksum: eba9b1a63a64804d8c141af9929f05b7fb407178e7288ea0036679604244f6b25e67b356e4b0fc09c86b2bfae555cf88a511c913198665a57d81fbcfde8561f9 + languageName: node + linkType: hard + "statuses@npm:>= 1.5.0 < 2, statuses@npm:~1.5.0": version: 1.5.0 resolution: "statuses@npm:1.5.0" @@ -17672,6 +19234,18 @@ resolve@^2.0.0-next.3: languageName: node linkType: hard +"stringify-entities@npm:^1.0.1": + version: 1.3.2 + resolution: "stringify-entities@npm:1.3.2" + dependencies: + character-entities-html4: ^1.0.0 + character-entities-legacy: ^1.0.0 + is-alphanumerical: ^1.0.0 + is-hexadecimal: ^1.0.0 + checksum: 4cbe43d89ef25d45034e60733caf9e27becf7521cb1e132749fd11ac34acb42214427db14ec6ed4b64ac077ccf09df7a1192a75f6104a38303a0462967bcd347 + languageName: node + linkType: hard + "strip-ansi@npm:6.0.0, strip-ansi@npm:^6.0.0": version: 6.0.0 resolution: "strip-ansi@npm:6.0.0" @@ -17717,6 +19291,13 @@ resolve@^2.0.0-next.3: languageName: node linkType: hard +"strip-bom-string@npm:^1.0.0": + version: 1.0.0 + resolution: "strip-bom-string@npm:1.0.0" + checksum: 5635a3656d8512a2c194d6c8d5dee7ef0dde6802f7be9413b91e201981ad4132506656d9cf14137f019fd50f0269390d91c7f6a2601b1bee039a4859cfce4934 + languageName: node + linkType: hard + "strip-bom@npm:^3.0.0": version: 3.0.0 resolution: "strip-bom@npm:3.0.0" @@ -17790,6 +19371,15 @@ resolve@^2.0.0-next.3: languageName: node linkType: hard +"style-to-object@npm:0.3.0, style-to-object@npm:^0.3.0": + version: 0.3.0 + resolution: "style-to-object@npm:0.3.0" + dependencies: + inline-style-parser: 0.1.1 + checksum: 4d7084015207f2a606dfc10c29cb5ba569f2fe8005551df7396110dd694d6ff650f2debafa95bd5d147dfb4ca50f57868e2a7f91bf5d11ef734fe7ccbd7abf59 + languageName: node + linkType: hard + "stylehacks@npm:^5.1.0": version: 5.1.0 resolution: "stylehacks@npm:5.1.0" @@ -17893,6 +19483,16 @@ resolve@^2.0.0-next.3: languageName: node linkType: hard +"swap-case@npm:^1.1.0": + version: 1.1.2 + resolution: "swap-case@npm:1.1.2" + dependencies: + lower-case: ^1.1.1 + upper-case: ^1.1.1 + checksum: 37b0c4988e12520fba54018f7fe259d62902e97349366209d2af9b1d5e741692c8f17da9d5e780c7bd1a56864bbb51d53eaf1a101a11afdfcae157912a3691d8 + languageName: node + linkType: hard + "swap-case@npm:^2.0.2": version: 2.0.2 resolution: "swap-case@npm:2.0.2" @@ -18102,6 +19702,16 @@ resolve@^2.0.0-next.3: languageName: node linkType: hard +"title-case@npm:^2.1.0": + version: 2.1.1 + resolution: "title-case@npm:2.1.1" + dependencies: + no-case: ^2.2.0 + upper-case: ^1.0.3 + checksum: e88ddfc4608a7fb18ed440139d9c42a5f8a50f916e07062be2aef5e2038720746ed51c4fdf9e7190d24a8cc10e6dec9773027fc44450b3a4a5e5c49b4a931fb1 + languageName: node + linkType: hard + "title-case@npm:^3.0.3": version: 3.0.3 resolution: "title-case@npm:3.0.3" @@ -18262,6 +19872,27 @@ resolve@^2.0.0-next.3: languageName: node linkType: hard +"trim-trailing-lines@npm:^1.0.0": + version: 1.1.4 + resolution: "trim-trailing-lines@npm:1.1.4" + checksum: 5d39d21c0d4b258667012fcd784f73129e148ea1c213b1851d8904f80499fc91df6710c94c7dd49a486a32da2b9cb86020dda79f285a9a2586cfa622f80490c2 + languageName: node + linkType: hard + +"trim@npm:0.0.1": + version: 0.0.1 + resolution: "trim@npm:0.0.1" + checksum: 2b4646dff99a222e8e1526edd4e3a43bbd925af0b8e837c340455d250157e7deefaa4da49bb891ab841e5c27b1afc5e9e32d4b57afb875d2dfcabf4e319b8f7f + languageName: node + linkType: hard + +"trough@npm:^1.0.0": + version: 1.0.5 + resolution: "trough@npm:1.0.5" + checksum: d6c8564903ed00e5258bab92134b020724dbbe83148dc72e4bf6306c03ed8843efa1bcc773fa62410dd89161ecb067432dd5916501793508a9506cacbc408e25 + languageName: node + linkType: hard + "true-case-path@npm:^2.2.1": version: 2.2.1 resolution: "true-case-path@npm:2.2.1" @@ -18507,6 +20138,26 @@ resolve@^2.0.0-next.3: languageName: node linkType: hard +"underscore.string@npm:^3.3.5": + version: 3.3.6 + resolution: "underscore.string@npm:3.3.6" + dependencies: + sprintf-js: ^1.1.1 + util-deprecate: ^1.0.2 + checksum: b7719c30e5d1fdda4ee9379e8d80dca2b0668942420ba365ae3410120e08225fe36707a7981ce0f921812dee6a2290b713cdce1e75e770b98e67a45d8a378d35 + languageName: node + linkType: hard + +"unherit@npm:^1.0.4": + version: 1.1.3 + resolution: "unherit@npm:1.1.3" + dependencies: + inherits: ^2.0.0 + xtend: ^4.0.0 + checksum: fd7922f84fc0bfb7c4df6d1f5a50b5b94a0218e3cda98a54dbbd209226ddd4072d742d3df44d0e295ab08d5ccfd304a1e193dfe31a86d2a91b7cb9fdac093194 + languageName: node + linkType: hard + "unicode-canonical-property-names-ecmascript@npm:^1.0.4": version: 1.0.4 resolution: "unicode-canonical-property-names-ecmascript@npm:1.0.4" @@ -18569,6 +20220,49 @@ resolve@^2.0.0-next.3: languageName: node linkType: hard +"unified@npm:9.2.0": + version: 9.2.0 + resolution: "unified@npm:9.2.0" + dependencies: + bail: ^1.0.0 + extend: ^3.0.0 + is-buffer: ^2.0.0 + is-plain-obj: ^2.0.0 + trough: ^1.0.0 + vfile: ^4.0.0 + checksum: 0cac4ae119893fbd49d309b4db48595e4d4e9f0a2dc1dde4d0074059f9a46012a2905f37c1346715e583f30c970bc8078db8462675411d39ff5036ae18b4fb8a + languageName: node + linkType: hard + +"unified@npm:^7.0.0": + version: 7.1.0 + resolution: "unified@npm:7.1.0" + dependencies: + "@types/unist": ^2.0.0 + "@types/vfile": ^3.0.0 + bail: ^1.0.0 + extend: ^3.0.0 + is-plain-obj: ^1.1.0 + trough: ^1.0.0 + vfile: ^3.0.0 + x-is-string: ^0.1.0 + checksum: cbe9ed45340b9db206af45b966fff01bf89df0d2805852a90943e14aba0cfce9116091514b95ef5e9fbeadbc13a3798638e1a2b7087eb534304bc7de3e8353da + languageName: node + linkType: hard + +"unified@npm:^8.4.2": + version: 8.4.2 + resolution: "unified@npm:8.4.2" + dependencies: + bail: ^1.0.0 + extend: ^3.0.0 + is-plain-obj: ^2.0.0 + trough: ^1.0.0 + vfile: ^4.0.0 + checksum: c2af7662d6375b14721df305786b15ba3228cd39c37da748bff00ed08ababd12ce52568f475347f270b1dea72fb0b9608563574a55c29e4f73f8be7ce0a01b4a + languageName: node + linkType: hard + "union-value@npm:^1.0.0": version: 1.0.1 resolution: "union-value@npm:1.0.1" @@ -18590,6 +20284,164 @@ resolve@^2.0.0-next.3: languageName: node linkType: hard +"unist-builder@npm:2.0.3, unist-builder@npm:^2.0.0": + version: 2.0.3 + resolution: "unist-builder@npm:2.0.3" + checksum: e946fdf77dbfc320feaece137ce4959ae2da6614abd1623bd39512dc741a9d5f313eb2ba79f8887d941365dccddec7fef4e953827475e392bf49b45336f597f6 + languageName: node + linkType: hard + +"unist-util-generated@npm:^1.0.0": + version: 1.1.6 + resolution: "unist-util-generated@npm:1.1.6" + checksum: 86239ff88a08800d52198f2f0e15911f05bab2dad17cef95550f7c2728f15ebb0344694fcc3101d05762d88adaf86cb85aa7a3300fedabd0b6d7d00b41cdcb7f + languageName: node + linkType: hard + +"unist-util-is@npm:^2.1.2": + version: 2.1.3 + resolution: "unist-util-is@npm:2.1.3" + checksum: 21a49b65797b8c139d1282a833c931df0a2296c482bb4808e3e189b60efe001730baf0736111cd50a05d3ace106b3f204a85cc38f88dc74b8077a220613831fe + languageName: node + linkType: hard + +"unist-util-is@npm:^3.0.0": + version: 3.0.0 + resolution: "unist-util-is@npm:3.0.0" + checksum: d24a5dd80c670f763b2ae608651cf062317456aa81be51f66f45cbd7d440a2ab18356e4f48aeac6b5e3d391c69d3c3452ade5fe5aa9574bec4a2de0b10122ed5 + languageName: node + linkType: hard + +"unist-util-is@npm:^4.0.0": + version: 4.1.0 + resolution: "unist-util-is@npm:4.1.0" + checksum: 726484cd2adc9be75a939aeedd48720f88294899c2e4a3143da413ae593f2b28037570730d5cf5fd910ff41f3bc1501e3d636b6814c478d71126581ef695f7ea + languageName: node + linkType: hard + +"unist-util-map@npm:^1.0.5": + version: 1.0.5 + resolution: "unist-util-map@npm:1.0.5" + dependencies: + object-assign: ^4.0.1 + checksum: 9f8880e65a4d5482d74f90d7c2b76a3aa7388c57be68eff71fe76ebe1bcf50dfb8788225c8c38aa1e0c19f46eb06685eaac10da1008f6f33f44e9944d453faa9 + languageName: node + linkType: hard + +"unist-util-modify-children@npm:^2.0.0": + version: 2.0.0 + resolution: "unist-util-modify-children@npm:2.0.0" + dependencies: + array-iterate: ^1.0.0 + checksum: 7c8e11c320e2c8f8e0f7ab32a0d5a88317a8ed40c30ef0dca1038252eae9ca31db7e24f3c77799ae086bf1f73ee8cc34056e12334b05da304287e3a5b8700034 + languageName: node + linkType: hard + +"unist-util-position@npm:^3.0.0": + version: 3.1.0 + resolution: "unist-util-position@npm:3.1.0" + checksum: 10b3952e32a1ffabbecad41c3946237f7059f5bb6436796da05531a285f50b97e4f37cfc2f7164676d041063f40fe1ad92fbb8ca38d3ae8747328ebe738d738f + languageName: node + linkType: hard + +"unist-util-remove-position@npm:^1.0.0": + version: 1.1.4 + resolution: "unist-util-remove-position@npm:1.1.4" + dependencies: + unist-util-visit: ^1.1.0 + checksum: 74be7078d135601e9d295f392ef2768efc2c0bdb8720480c36fa608df6290cb85d324e82d4bdfc2f38303c466ffbba4f0fa4f9acb25fff45d23926259bdafcf6 + languageName: node + linkType: hard + +"unist-util-remove-position@npm:^2.0.0": + version: 2.0.1 + resolution: "unist-util-remove-position@npm:2.0.1" + dependencies: + unist-util-visit: ^2.0.0 + checksum: 4149294969f1a78a367b5d03eb0a138aa8320a39e1b15686647a2bec5945af3df27f2936a1e9752ecbb4a82dc23bd86f7e5a0ee048e5eeaedc2deb9237872795 + languageName: node + linkType: hard + +"unist-util-remove@npm:^1.0.3": + version: 1.0.3 + resolution: "unist-util-remove@npm:1.0.3" + dependencies: + unist-util-is: ^3.0.0 + checksum: 16ba4e1190a0faa7fd21760a21b54d0b26dd48c136f657815b9e745b7abff8a2ca2477c1ff42b1c6779529954670eda67673d538ae2ee0bb06f272397c05b169 + languageName: node + linkType: hard + +"unist-util-remove@npm:^2.0.0": + version: 2.1.0 + resolution: "unist-util-remove@npm:2.1.0" + dependencies: + unist-util-is: ^4.0.0 + checksum: 99e54f3ea0523f8cf957579a6e84e5b58427bffab929cc7f6aa5119581f929db683dd4691ea5483df0c272f486dda9dbd04f4ab74dca6cae1f3ebe8e4261a4d9 + languageName: node + linkType: hard + +"unist-util-stringify-position@npm:^1.0.0, unist-util-stringify-position@npm:^1.1.1": + version: 1.1.2 + resolution: "unist-util-stringify-position@npm:1.1.2" + checksum: a8742a66cd0c1f5905b7d14345ef9bf2abf74acd68d419dbbfb284e6005629288dbbbc2a78df190c3939d6fb1031b0bb8f94025689c44209d48a1f2ff2ff54a0 + languageName: node + linkType: hard + +"unist-util-stringify-position@npm:^2.0.0": + version: 2.0.3 + resolution: "unist-util-stringify-position@npm:2.0.3" + dependencies: + "@types/unist": ^2.0.2 + checksum: f755cadc959f9074fe999578a1a242761296705a7fe87f333a37c00044de74ab4b184b3812989a57d4cd12211f0b14ad397b327c3a594c7af84361b1c25a7f09 + languageName: node + linkType: hard + +"unist-util-visit-children@npm:^1.0.0": + version: 1.1.4 + resolution: "unist-util-visit-children@npm:1.1.4" + checksum: df41bf79851781ea1b19de854e2cfc78c9a63098f0387b32eb74b7860eb1f59bb7d12cce7ef53536baf14eea055d201e8b8268176b849a681c5a678b4d2de293 + languageName: node + linkType: hard + +"unist-util-visit-parents@npm:^2.0.0": + version: 2.1.2 + resolution: "unist-util-visit-parents@npm:2.1.2" + dependencies: + unist-util-is: ^3.0.0 + checksum: 048edbb590a8c4bc0043eec9f50d3fe76faa58f1ac663a7e6dee5e895ddd0ce8bc52f2cfe2e633849fa93671e8de021070667acb1518e3d40220768c7f70a3d3 + languageName: node + linkType: hard + +"unist-util-visit-parents@npm:^3.0.0": + version: 3.1.1 + resolution: "unist-util-visit-parents@npm:3.1.1" + dependencies: + "@types/unist": ^2.0.0 + unist-util-is: ^4.0.0 + checksum: 1170e397dff88fab01e76d5154981666eb0291019d2462cff7a2961a3e76d3533b42eaa16b5b7e2d41ad42a5ea7d112301458283d255993e660511387bf67bc3 + languageName: node + linkType: hard + +"unist-util-visit@npm:2.0.3, unist-util-visit@npm:^2.0.0": + version: 2.0.3 + resolution: "unist-util-visit@npm:2.0.3" + dependencies: + "@types/unist": ^2.0.0 + unist-util-is: ^4.0.0 + unist-util-visit-parents: ^3.0.0 + checksum: 1fe19d500e212128f96d8c3cfa3312846e586b797748a1fd195fe6479f06bc90a6f6904deb08eefc00dd58e83a1c8a32fb8677252d2273ad7a5e624525b69b8f + languageName: node + linkType: hard + +"unist-util-visit@npm:^1.1.0, unist-util-visit@npm:^1.4.1": + version: 1.4.1 + resolution: "unist-util-visit@npm:1.4.1" + dependencies: + unist-util-visit-parents: ^2.0.0 + checksum: e9395205b6908c8d0fe71bc44e65d89d4781d1bb2d453a33cb67ed4124bad0b89d6b1d526ebaecb82a7c48e211bdf6f24351449b8cc115327b345f4617c18728 + languageName: node + linkType: hard + "universalify@npm:^0.1.2": version: 0.1.2 resolution: "universalify@npm:0.1.2" @@ -18659,6 +20511,15 @@ resolve@^2.0.0-next.3: languageName: node linkType: hard +"upper-case-first@npm:^1.1.0, upper-case-first@npm:^1.1.2": + version: 1.1.2 + resolution: "upper-case-first@npm:1.1.2" + dependencies: + upper-case: ^1.1.1 + checksum: 7467267967de978316c26c64ca9a4b2fbe5ccb530dc2579b1078bfeb89723ba24bc20881de1d23db301f6e7e5e24b4084e6f5f7ddbb2275a55177d06d9a250b7 + languageName: node + linkType: hard + "upper-case-first@npm:^2.0.2": version: 2.0.2 resolution: "upper-case-first@npm:2.0.2" @@ -18668,6 +20529,13 @@ resolve@^2.0.0-next.3: languageName: node linkType: hard +"upper-case@npm:^1.0.3, upper-case@npm:^1.1.0, upper-case@npm:^1.1.1, upper-case@npm:^1.1.3": + version: 1.1.3 + resolution: "upper-case@npm:1.1.3" + checksum: 991c845de75fa56e5ad983f15e58494dd77b77cadd79d273cc11e8da400067e9881ae1a52b312aed79b3d754496e2e0712e08d22eae799e35c7f9ba6f3d8a85d + languageName: node + linkType: hard + "upper-case@npm:^2.0.2": version: 2.0.2 resolution: "upper-case@npm:2.0.2" @@ -18729,6 +20597,16 @@ resolve@^2.0.0-next.3: languageName: node linkType: hard +"url@npm:^0.11.0": + version: 0.11.0 + resolution: "url@npm:0.11.0" + dependencies: + punycode: 1.3.2 + querystring: 0.2.0 + checksum: 50d100d3dd2d98b9fe3ada48cadb0b08aa6be6d3ac64112b867b56b19be4bfcba03c2a9a0d7922bfd7ac17d4834e88537749fe182430dfd9b68e520175900d90 + languageName: node + linkType: hard + "use@npm:^3.1.0": version: 3.1.1 resolution: "use@npm:3.1.1" @@ -18853,6 +20731,63 @@ resolve@^2.0.0-next.3: languageName: node linkType: hard +"vfile-location@npm:^2.0.0": + version: 2.0.6 + resolution: "vfile-location@npm:2.0.6" + checksum: ca0da908fdcd86f3df749a328ff777cf8994240eb333da7e6ee270b4fec09058d7b64f174ce9e31a9c591bb9ed01b45c223186a31036860d9f463eca059c058e + languageName: node + linkType: hard + +"vfile-location@npm:^3.0.0, vfile-location@npm:^3.2.0": + version: 3.2.0 + resolution: "vfile-location@npm:3.2.0" + checksum: 9bb3df6d0be31b5dd2d8da0170c27b7045c64493a8ba7b6ff7af8596c524fc8896924b8dd85ae12d201eead2709217a0fbc44927b7264f4bbf0aa8027a78be9c + languageName: node + linkType: hard + +"vfile-message@npm:^1.0.0": + version: 1.1.1 + resolution: "vfile-message@npm:1.1.1" + dependencies: + unist-util-stringify-position: ^1.1.1 + checksum: 0be85d2c9bf00aa3e065cd284a705c4143fe65004d2927d20e3f06aa7ff77038008a38704c6f60519362e3a413c9fe86e4c770e3ecf3bff6b7d604ade9ecf4ff + languageName: node + linkType: hard + +"vfile-message@npm:^2.0.0": + version: 2.0.4 + resolution: "vfile-message@npm:2.0.4" + dependencies: + "@types/unist": ^2.0.0 + unist-util-stringify-position: ^2.0.0 + checksum: 1bade499790f46ca5aba04bdce07a1e37c2636a8872e05cf32c26becc912826710b7eb063d30c5754fdfaeedc8a7658e78df10b3bc535c844890ec8a184f5643 + languageName: node + linkType: hard + +"vfile@npm:^3.0.0": + version: 3.0.1 + resolution: "vfile@npm:3.0.1" + dependencies: + is-buffer: ^2.0.0 + replace-ext: 1.0.0 + unist-util-stringify-position: ^1.0.0 + vfile-message: ^1.0.0 + checksum: d0a0caf7eca8478b2caa93e72bc3b37a2bf77916a195d8937b173d7fe0ded9a0146503de269afabf2a0465fa6b4c009d1486a4e5dd070f6d5fd225eb4ed25343 + languageName: node + linkType: hard + +"vfile@npm:^4.0.0": + version: 4.2.1 + resolution: "vfile@npm:4.2.1" + dependencies: + "@types/unist": ^2.0.0 + is-buffer: ^2.0.0 + unist-util-stringify-position: ^2.0.0 + vfile-message: ^2.0.0 + checksum: ee5726e10d170472cde778fc22e0f7499caa096eb85babea5d0ce0941455b721037ee1c9e6ae506ca2803250acd313d0f464328ead0b55cfe7cb6315f1b462d6 + languageName: node + linkType: hard + "w3c-hr-time@npm:^1.0.2": version: 1.0.2 resolution: "w3c-hr-time@npm:1.0.2" @@ -18897,6 +20832,13 @@ resolve@^2.0.0-next.3: languageName: node linkType: hard +"web-namespaces@npm:^1.0.0": + version: 1.1.4 + resolution: "web-namespaces@npm:1.1.4" + checksum: 5149842ccbfbc56fe4f8758957b3f8c8616a281874a5bb84aa1b305e4436a9bad853d21c629a7b8f174902449e1489c7a6c724fccf60965077c5636bd8aed42b + languageName: node + linkType: hard + "webidl-conversions@npm:^3.0.0": version: 3.0.1 resolution: "webidl-conversions@npm:3.0.1" @@ -18944,6 +20886,16 @@ resolve@^2.0.0-next.3: languageName: node linkType: hard +"webpack-sources@npm:^0.2.0": + version: 0.2.3 + resolution: "webpack-sources@npm:0.2.3" + dependencies: + source-list-map: ^1.1.1 + source-map: ~0.5.3 + checksum: d048cf7f8e087bd024d2859292a373a2c3280521d33a7aa95252355c36dbb01f60ae85dfb327b6dbe2491fad323b3e74b11b067594497c498ddd15e34390cd0d + languageName: node + linkType: hard + "webpack-sources@npm:^1.1.0": version: 1.4.3 resolution: "webpack-sources@npm:1.4.3" @@ -19231,6 +21183,13 @@ resolve@^2.0.0-next.3: languageName: node linkType: hard +"x-is-string@npm:^0.1.0": + version: 0.1.0 + resolution: "x-is-string@npm:0.1.0" + checksum: 38acefe5ae2dd48339996f732c55f55d4b1c1d3f65c02116639989d8a49dd06daca3e907accfc56aac84f23372c88b83af0efc849cc62e702c81aae4de44c0d6 + languageName: node + linkType: hard + "xdg-basedir@npm:^4.0.0": version: 4.0.0 resolution: "xdg-basedir@npm:4.0.0" @@ -19321,7 +21280,7 @@ resolve@^2.0.0-next.3: languageName: node linkType: hard -"xtend@npm:^4.0.0": +"xtend@npm:^4.0.0, xtend@npm:^4.0.1": version: 4.0.2 resolution: "xtend@npm:4.0.2" checksum: ac5dfa738b21f6e7f0dd6e65e1b3155036d68104e67e5d5d1bde74892e327d7e5636a076f625599dc394330a731861e87343ff184b0047fef1360a7ec0a5a36a @@ -19473,3 +21432,10 @@ resolve@^2.0.0-next.3: checksum: e1e60a859b21af5897501b3e12ff2c811b39f7b376e32ee8de0056bcfe7e64609c08dc265e33d7b6c20f81d07f987eb1be1dad8780473461a437828828995a79 languageName: node linkType: hard + +"zwitch@npm:^1.0.0": + version: 1.0.5 + resolution: "zwitch@npm:1.0.5" + checksum: 28a1bebacab3bc60150b6b0a2ba1db2ad033f068e81f05e4892ec0ea13ae63f5d140a1d692062ac0657840c8da076f35b94433b5f1c329d7803b247de80f064a + languageName: node + linkType: hard