[
  {
    "title": "author",
    "description": "",
    "canonical": "queries/author",
    "category": "graphql",
    "type": "graphql_query",
    "context": {
      "graphqlTypeShort": "query",
      "graphqlName": "author",
      "group": [
        "Queries"
      ],
      "scopes": []
    },
    "examples": {
      "groups": [
        {
          "description": "",
          "examples": [
            {
              "codeblock": {
                "tabs": [
                  {
                    "title": "",
                    "language": "graphql",
                    "code": "query author($id: ID!) {\n  author(id: $id) {\n    # author fields\n  }\n}"
                  }
                ]
              }
            }
          ]
        }
      ]
    },
    "definitions": [
      {
        "title": "Arguments",
        "properties": [
          {
            "name": "id",
            "type": "ID!",
            "description": "",
            "context": {
              "graphqlName": "id",
              "graphqlTypeFlat": "ID",
              "graphqlBuiltInType": true
            },
            "properties": [],
            "meta": [
              {
                "name": "required",
                "value": "true"
              }
            ],
            "symbolDef": {
              "canonical": ""
            }
          },
          {
            "name": "details",
            "type": "AuthorDetailsInput",
            "description": "",
            "context": {
              "graphqlTypeShort": "input",
              "graphqlName": "AuthorDetailsInput",
              "group": [
                "Inputs"
              ],
              "scopes": []
            },
            "properties": [],
            "meta": [],
            "symbolDef": {
              "canonical": "inputs/AuthorDetailsInput"
            }
          }
        ]
      },
      {
        "title": "Returns",
        "properties": [
          {
            "name": "",
            "type": "Author",
            "description": "",
            "context": {
              "graphqlName": "author",
              "graphqlTypeFlat": "Author",
              "graphqlBuiltInType": false
            },
            "properties": [],
            "meta": [],
            "symbolDef": {
              "canonical": "objects/Author"
            }
          }
        ]
      }
    ]
  },
  {
    "title": "authorDelete",
    "description": "",
    "canonical": "queries/authorDelete",
    "category": "graphql",
    "type": "graphql_query",
    "context": {
      "graphqlTypeShort": "query",
      "graphqlName": "authorDelete",
      "group": [
        "Queries"
      ],
      "scopes": []
    },
    "examples": {
      "groups": [
        {
          "description": "",
          "examples": [
            {
              "codeblock": {
                "tabs": [
                  {
                    "title": "",
                    "language": "graphql",
                    "code": "query authorDelete($id: ID!) {\n  authorDelete(id: $id) {\n    # authorDelete fields\n  }\n}"
                  }
                ]
              }
            }
          ]
        }
      ]
    },
    "definitions": [
      {
        "title": "Arguments",
        "properties": [
          {
            "name": "id",
            "type": "ID!",
            "description": "",
            "context": {
              "graphqlName": "id",
              "graphqlTypeFlat": "ID",
              "graphqlBuiltInType": true
            },
            "properties": [],
            "meta": [
              {
                "name": "required",
                "value": "true"
              }
            ],
            "symbolDef": {
              "canonical": ""
            }
          }
        ]
      },
      {
        "title": "Returns",
        "properties": [
          {
            "name": "",
            "type": "Boolean",
            "description": "",
            "context": {
              "graphqlName": "authorDelete",
              "graphqlTypeFlat": "Boolean",
              "graphqlBuiltInType": true
            },
            "properties": [],
            "meta": [],
            "symbolDef": {
              "canonical": ""
            }
          }
        ]
      }
    ]
  },
  {
    "title": "Author",
    "description": "",
    "canonical": "objects/Author",
    "category": "graphql",
    "type": "graphql_object",
    "context": {
      "graphqlTypeShort": "object",
      "graphqlName": "Author",
      "group": [
        "Objects"
      ],
      "scopes": []
    },
    "examples": {
      "groups": []
    },
    "definitions": [
      {
        "title": "Arguments",
        "properties": [],
        "variants": [],
        "meta": [
          {
            "name": "type",
            "value": "arguments"
          }
        ]
      },
      {
        "title": "Fields",
        "properties": [
          {
            "name": "id",
            "type": "ID!",
            "description": "",
            "context": {
              "graphqlName": "id",
              "graphqlTypeFlat": "ID",
              "graphqlBuiltInType": true
            },
            "properties": [],
            "meta": [
              {
                "name": "required",
                "value": "true"
              }
            ],
            "symbolDef": {
              "canonical": ""
            }
          },
          {
            "name": "name",
            "type": "String!",
            "description": "",
            "context": {
              "graphqlName": "name",
              "graphqlTypeFlat": "String",
              "graphqlBuiltInType": true
            },
            "properties": [],
            "meta": [
              {
                "name": "required",
                "value": "true"
              }
            ],
            "symbolDef": {
              "canonical": ""
            }
          },
          {
            "name": "details",
            "type": "AuthorDetails!",
            "description": "",
            "context": {
              "graphqlName": "details",
              "graphqlTypeFlat": "AuthorDetails",
              "graphqlBuiltInType": false
            },
            "properties": [],
            "meta": [
              {
                "name": "required",
                "value": "true"
              }
            ],
            "symbolDef": {
              "canonical": "objects/AuthorDetails"
            }
          }
        ],
        "meta": [
          {
            "name": "type",
            "value": "fields"
          }
        ]
      }
    ]
  },
  {
    "title": "AuthorDetails",
    "description": "",
    "canonical": "objects/AuthorDetails",
    "category": "graphql",
    "type": "graphql_object",
    "context": {
      "graphqlTypeShort": "object",
      "graphqlName": "AuthorDetails",
      "group": [
        "Objects"
      ],
      "scopes": []
    },
    "examples": {
      "groups": []
    },
    "definitions": [
      {
        "title": "Arguments",
        "properties": [],
        "variants": [],
        "meta": [
          {
            "name": "type",
            "value": "arguments"
          }
        ]
      },
      {
        "title": "Fields",
        "properties": [
          {
            "name": "birthDate",
            "type": "String",
            "description": "",
            "context": {
              "graphqlName": "birthDate",
              "graphqlTypeFlat": "String",
              "graphqlBuiltInType": true
            },
            "properties": [],
            "meta": [],
            "symbolDef": {
              "canonical": ""
            }
          }
        ],
        "meta": [
          {
            "name": "type",
            "value": "fields"
          }
        ]
      }
    ]
  },
  {
    "title": "AuthorDetailsInput",
    "description": "",
    "canonical": "inputs/AuthorDetailsInput",
    "category": "graphql",
    "type": "graphql_input",
    "context": {
      "graphqlTypeShort": "input",
      "graphqlName": "AuthorDetailsInput",
      "group": [
        "Inputs"
      ],
      "scopes": []
    },
    "examples": {
      "groups": []
    },
    "definitions": [
      {
        "title": "Fields",
        "properties": [
          {
            "name": "birthDate",
            "type": "String",
            "description": "",
            "context": {
              "graphqlName": "birthDate",
              "graphqlTypeFlat": "String",
              "graphqlBuiltInType": true
            },
            "properties": [],
            "meta": [],
            "symbolDef": {
              "canonical": ""
            }
          }
        ]
      }
    ]
  }
]