Skip to content

Latest commit

 

History

History
25 lines (18 loc) · 388 Bytes

File metadata and controls

25 lines (18 loc) · 388 Bytes

Schema Queries

If you do not know a remote schema query all existing types like this

query {
  __schema {
    types {
      name
    }
  }
}

For a given type query all attributes like this

query {
  __type(name: "Author") {
    name
    description
  }
}

Tools