Skip to content
Discussion options

You must be logged in to vote
  • GraphQL API is introspective in your case the entries field on the Tree object doesn't take any arguments
{
  __type(name: "Tree") {
    name
    fields {
      name
      args {
        name
      }
    }
  }
}
{
  "data": {
    "__type": {
      "name": "Tree",
      "fields": [
        {
          "name": "abbreviatedOid",
          "args": []
        },
        {
          "name": "commitResourcePath",
          "args": []
        },
        {
          "name": "commitUrl",
          "args": []
        },
        {
          "name": "entries",
          "args": []
        },
        {
          "name": "id",
          "args": []
        },
        {
          "name": "oid",
          

Replies: 2 comments 1 reply

Comment options

You must be logged in to vote
1 reply
@RAFAQAT11
Comment options

Answer selected by RAFAQAT11
Comment options

You must be logged in to vote
0 replies
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Apps API and Webhooks Discussions related to GitHub's APIs or Webhooks Question Ask and answer questions about GitHub features and usage
3 participants