Advertisement
Guest User

Untitled

a guest
Jun 20th, 2019
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 43.81 KB | None | 0 0
  1. {
  2.   "__schema": {
  3.     "queryType": {
  4.       "name": "Query"
  5.     },
  6.     "mutationType": null,
  7.     "subscriptionType": null,
  8.     "types": [
  9.       {
  10.         "kind": "OBJECT",
  11.         "name": "Query",
  12.         "description": null,
  13.         "fields": [
  14.           {
  15.             "name": "users",
  16.             "description": null,
  17.             "args": [],
  18.             "type": {
  19.               "kind": "NON_NULL",
  20.               "name": null,
  21.               "ofType": {
  22.                 "kind": "LIST",
  23.                 "name": null,
  24.                 "ofType": {
  25.                   "kind": "NON_NULL",
  26.                   "name": null,
  27.                   "ofType": {
  28.                     "kind": "OBJECT",
  29.                     "name": "User",
  30.                     "ofType": null
  31.                   }
  32.                 }
  33.               }
  34.             },
  35.             "isDeprecated": false,
  36.             "deprecationReason": null
  37.           },
  38.           {
  39.             "name": "GetJobs",
  40.             "description": null,
  41.             "args": [],
  42.             "type": {
  43.               "kind": "NON_NULL",
  44.               "name": null,
  45.               "ofType": {
  46.                 "kind": "LIST",
  47.                 "name": null,
  48.                 "ofType": {
  49.                   "kind": "NON_NULL",
  50.                   "name": null,
  51.                   "ofType": {
  52.                     "kind": "OBJECT",
  53.                     "name": "job",
  54.                     "ofType": null
  55.                   }
  56.                 }
  57.               }
  58.             },
  59.             "isDeprecated": false,
  60.             "deprecationReason": null
  61.           },
  62.           {
  63.             "name": "userById",
  64.             "description": null,
  65.             "args": [
  66.               {
  67.                 "name": "id",
  68.                 "description": null,
  69.                 "type": {
  70.                   "kind": "NON_NULL",
  71.                   "name": null,
  72.                   "ofType": {
  73.                     "kind": "SCALAR",
  74.                     "name": "ID",
  75.                     "ofType": null
  76.                   }
  77.                 },
  78.                 "defaultValue": null
  79.               }
  80.             ],
  81.             "type": {
  82.               "kind": "OBJECT",
  83.               "name": "User",
  84.               "ofType": null
  85.             },
  86.             "isDeprecated": false,
  87.             "deprecationReason": null
  88.           }
  89.         ],
  90.         "inputFields": null,
  91.         "interfaces": [],
  92.         "enumValues": null,
  93.         "possibleTypes": null
  94.       },
  95.       {
  96.         "kind": "OBJECT",
  97.         "name": "User",
  98.         "description": null,
  99.         "fields": [
  100.           {
  101.             "name": "id",
  102.             "description": null,
  103.             "args": [],
  104.             "type": {
  105.               "kind": "NON_NULL",
  106.               "name": null,
  107.               "ofType": {
  108.                 "kind": "SCALAR",
  109.                 "name": "ID",
  110.                 "ofType": null
  111.               }
  112.             },
  113.             "isDeprecated": false,
  114.             "deprecationReason": null
  115.           },
  116.           {
  117.             "name": "name",
  118.             "description": null,
  119.             "args": [],
  120.             "type": {
  121.               "kind": "NON_NULL",
  122.               "name": null,
  123.               "ofType": {
  124.                 "kind": "SCALAR",
  125.                 "name": "String",
  126.                 "ofType": null
  127.               }
  128.             },
  129.             "isDeprecated": false,
  130.             "deprecationReason": null
  131.           },
  132.           {
  133.             "name": "email",
  134.             "description": null,
  135.             "args": [],
  136.             "type": {
  137.               "kind": "NON_NULL",
  138.               "name": null,
  139.               "ofType": {
  140.                 "kind": "SCALAR",
  141.                 "name": "String",
  142.                 "ofType": null
  143.               }
  144.             },
  145.             "isDeprecated": false,
  146.             "deprecationReason": null
  147.           },
  148.           {
  149.             "name": "jobs",
  150.             "description": null,
  151.             "args": [],
  152.             "type": {
  153.               "kind": "NON_NULL",
  154.               "name": null,
  155.               "ofType": {
  156.                 "kind": "LIST",
  157.                 "name": null,
  158.                 "ofType": {
  159.                   "kind": "NON_NULL",
  160.                   "name": null,
  161.                   "ofType": {
  162.                     "kind": "OBJECT",
  163.                     "name": "job",
  164.                     "ofType": null
  165.                   }
  166.                 }
  167.               }
  168.             },
  169.             "isDeprecated": false,
  170.             "deprecationReason": null
  171.           }
  172.         ],
  173.         "inputFields": null,
  174.         "interfaces": [],
  175.         "enumValues": null,
  176.         "possibleTypes": null
  177.       },
  178.       {
  179.         "kind": "SCALAR",
  180.         "name": "ID",
  181.         "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.",
  182.         "fields": null,
  183.         "inputFields": null,
  184.         "interfaces": null,
  185.         "enumValues": null,
  186.         "possibleTypes": null
  187.       },
  188.       {
  189.         "kind": "SCALAR",
  190.         "name": "String",
  191.         "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.",
  192.         "fields": null,
  193.         "inputFields": null,
  194.         "interfaces": null,
  195.         "enumValues": null,
  196.         "possibleTypes": null
  197.       },
  198.       {
  199.         "kind": "OBJECT",
  200.         "name": "job",
  201.         "description": null,
  202.         "fields": [
  203.           {
  204.             "name": "id",
  205.             "description": null,
  206.             "args": [],
  207.             "type": {
  208.               "kind": "NON_NULL",
  209.               "name": null,
  210.               "ofType": {
  211.                 "kind": "SCALAR",
  212.                 "name": "ID",
  213.                 "ofType": null
  214.               }
  215.             },
  216.             "isDeprecated": false,
  217.             "deprecationReason": null
  218.           },
  219.           {
  220.             "name": "title",
  221.             "description": null,
  222.             "args": [],
  223.             "type": {
  224.               "kind": "NON_NULL",
  225.               "name": null,
  226.               "ofType": {
  227.                 "kind": "SCALAR",
  228.                 "name": "String",
  229.                 "ofType": null
  230.               }
  231.             },
  232.             "isDeprecated": false,
  233.             "deprecationReason": null
  234.           },
  235.           {
  236.             "name": "user_id",
  237.             "description": null,
  238.             "args": [],
  239.             "type": {
  240.               "kind": "NON_NULL",
  241.               "name": null,
  242.               "ofType": {
  243.                 "kind": "SCALAR",
  244.                 "name": "Int",
  245.                 "ofType": null
  246.               }
  247.             },
  248.             "isDeprecated": false,
  249.             "deprecationReason": null
  250.           }
  251.         ],
  252.         "inputFields": null,
  253.         "interfaces": [],
  254.         "enumValues": null,
  255.         "possibleTypes": null
  256.       },
  257.       {
  258.         "kind": "SCALAR",
  259.         "name": "Int",
  260.         "description": "The `Int` scalar type represents non-fractional signed whole numeric values. Int can represent values between -(2^31) and 2^31 - 1. ",
  261.         "fields": null,
  262.         "inputFields": null,
  263.         "interfaces": null,
  264.         "enumValues": null,
  265.         "possibleTypes": null
  266.       },
  267.       {
  268.         "kind": "OBJECT",
  269.         "name": "__Schema",
  270.         "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.",
  271.         "fields": [
  272.           {
  273.             "name": "types",
  274.             "description": "A list of all types supported by this server.",
  275.             "args": [],
  276.             "type": {
  277.               "kind": "NON_NULL",
  278.               "name": null,
  279.               "ofType": {
  280.                 "kind": "LIST",
  281.                 "name": null,
  282.                 "ofType": {
  283.                   "kind": "NON_NULL",
  284.                   "name": null,
  285.                   "ofType": {
  286.                     "kind": "OBJECT",
  287.                     "name": "__Type",
  288.                     "ofType": null
  289.                   }
  290.                 }
  291.               }
  292.             },
  293.             "isDeprecated": false,
  294.             "deprecationReason": null
  295.           },
  296.           {
  297.             "name": "queryType",
  298.             "description": "The type that query operations will be rooted at.",
  299.             "args": [],
  300.             "type": {
  301.               "kind": "NON_NULL",
  302.               "name": null,
  303.               "ofType": {
  304.                 "kind": "OBJECT",
  305.                 "name": "__Type",
  306.                 "ofType": null
  307.               }
  308.             },
  309.             "isDeprecated": false,
  310.             "deprecationReason": null
  311.           },
  312.           {
  313.             "name": "mutationType",
  314.             "description": "If this server supports mutation, the type that mutation operations will be rooted at.",
  315.             "args": [],
  316.             "type": {
  317.               "kind": "OBJECT",
  318.               "name": "__Type",
  319.               "ofType": null
  320.             },
  321.             "isDeprecated": false,
  322.             "deprecationReason": null
  323.           },
  324.           {
  325.             "name": "subscriptionType",
  326.             "description": "If this server support subscription, the type that subscription operations will be rooted at.",
  327.             "args": [],
  328.             "type": {
  329.               "kind": "OBJECT",
  330.               "name": "__Type",
  331.               "ofType": null
  332.             },
  333.             "isDeprecated": false,
  334.             "deprecationReason": null
  335.           },
  336.           {
  337.             "name": "directives",
  338.             "description": "A list of all directives supported by this server.",
  339.             "args": [],
  340.             "type": {
  341.               "kind": "NON_NULL",
  342.               "name": null,
  343.               "ofType": {
  344.                 "kind": "LIST",
  345.                 "name": null,
  346.                 "ofType": {
  347.                   "kind": "NON_NULL",
  348.                   "name": null,
  349.                   "ofType": {
  350.                     "kind": "OBJECT",
  351.                     "name": "__Directive",
  352.                     "ofType": null
  353.                   }
  354.                 }
  355.               }
  356.             },
  357.             "isDeprecated": false,
  358.             "deprecationReason": null
  359.           }
  360.         ],
  361.         "inputFields": null,
  362.         "interfaces": [],
  363.         "enumValues": null,
  364.         "possibleTypes": null
  365.       },
  366.       {
  367.         "kind": "OBJECT",
  368.         "name": "__Type",
  369.         "description": "The fundamental unit of any GraphQL Schema is the type. There are many kinds of types in GraphQL as represented by the `__TypeKind` enum.\n\nDepending on the kind of a type, certain fields describe information about that type. Scalar types provide no information beyond a name and description, while Enum types provide their values. Object and Interface types provide the fields they describe. Abstract types, Union and Interface, provide the Object types possible at runtime. List and NonNull types compose other types.",
  370.         "fields": [
  371.           {
  372.             "name": "kind",
  373.             "description": null,
  374.             "args": [],
  375.             "type": {
  376.               "kind": "NON_NULL",
  377.               "name": null,
  378.               "ofType": {
  379.                 "kind": "ENUM",
  380.                 "name": "__TypeKind",
  381.                 "ofType": null
  382.               }
  383.             },
  384.             "isDeprecated": false,
  385.             "deprecationReason": null
  386.           },
  387.           {
  388.             "name": "name",
  389.             "description": null,
  390.             "args": [],
  391.             "type": {
  392.               "kind": "SCALAR",
  393.               "name": "String",
  394.               "ofType": null
  395.             },
  396.             "isDeprecated": false,
  397.             "deprecationReason": null
  398.           },
  399.           {
  400.             "name": "description",
  401.             "description": null,
  402.             "args": [],
  403.             "type": {
  404.               "kind": "SCALAR",
  405.               "name": "String",
  406.               "ofType": null
  407.             },
  408.             "isDeprecated": false,
  409.             "deprecationReason": null
  410.           },
  411.           {
  412.             "name": "fields",
  413.             "description": null,
  414.             "args": [
  415.               {
  416.                 "name": "includeDeprecated",
  417.                 "description": null,
  418.                 "type": {
  419.                   "kind": "SCALAR",
  420.                   "name": "Boolean",
  421.                   "ofType": null
  422.                 },
  423.                 "defaultValue": "false"
  424.               }
  425.             ],
  426.             "type": {
  427.               "kind": "LIST",
  428.               "name": null,
  429.               "ofType": {
  430.                 "kind": "NON_NULL",
  431.                 "name": null,
  432.                 "ofType": {
  433.                   "kind": "OBJECT",
  434.                   "name": "__Field",
  435.                   "ofType": null
  436.                 }
  437.               }
  438.             },
  439.             "isDeprecated": false,
  440.             "deprecationReason": null
  441.           },
  442.           {
  443.             "name": "interfaces",
  444.             "description": null,
  445.             "args": [],
  446.             "type": {
  447.               "kind": "LIST",
  448.               "name": null,
  449.               "ofType": {
  450.                 "kind": "NON_NULL",
  451.                 "name": null,
  452.                 "ofType": {
  453.                   "kind": "OBJECT",
  454.                   "name": "__Type",
  455.                   "ofType": null
  456.                 }
  457.               }
  458.             },
  459.             "isDeprecated": false,
  460.             "deprecationReason": null
  461.           },
  462.           {
  463.             "name": "possibleTypes",
  464.             "description": null,
  465.             "args": [],
  466.             "type": {
  467.               "kind": "LIST",
  468.               "name": null,
  469.               "ofType": {
  470.                 "kind": "NON_NULL",
  471.                 "name": null,
  472.                 "ofType": {
  473.                   "kind": "OBJECT",
  474.                   "name": "__Type",
  475.                   "ofType": null
  476.                 }
  477.               }
  478.             },
  479.             "isDeprecated": false,
  480.             "deprecationReason": null
  481.           },
  482.           {
  483.             "name": "enumValues",
  484.             "description": null,
  485.             "args": [
  486.               {
  487.                 "name": "includeDeprecated",
  488.                 "description": null,
  489.                 "type": {
  490.                   "kind": "SCALAR",
  491.                   "name": "Boolean",
  492.                   "ofType": null
  493.                 },
  494.                 "defaultValue": "false"
  495.               }
  496.             ],
  497.             "type": {
  498.               "kind": "LIST",
  499.               "name": null,
  500.               "ofType": {
  501.                 "kind": "NON_NULL",
  502.                 "name": null,
  503.                 "ofType": {
  504.                   "kind": "OBJECT",
  505.                   "name": "__EnumValue",
  506.                   "ofType": null
  507.                 }
  508.               }
  509.             },
  510.             "isDeprecated": false,
  511.             "deprecationReason": null
  512.           },
  513.           {
  514.             "name": "inputFields",
  515.             "description": null,
  516.             "args": [],
  517.             "type": {
  518.               "kind": "LIST",
  519.               "name": null,
  520.               "ofType": {
  521.                 "kind": "NON_NULL",
  522.                 "name": null,
  523.                 "ofType": {
  524.                   "kind": "OBJECT",
  525.                   "name": "__InputValue",
  526.                   "ofType": null
  527.                 }
  528.               }
  529.             },
  530.             "isDeprecated": false,
  531.             "deprecationReason": null
  532.           },
  533.           {
  534.             "name": "ofType",
  535.             "description": null,
  536.             "args": [],
  537.             "type": {
  538.               "kind": "OBJECT",
  539.               "name": "__Type",
  540.               "ofType": null
  541.             },
  542.             "isDeprecated": false,
  543.             "deprecationReason": null
  544.           }
  545.         ],
  546.         "inputFields": null,
  547.         "interfaces": [],
  548.         "enumValues": null,
  549.         "possibleTypes": null
  550.       },
  551.       {
  552.         "kind": "ENUM",
  553.         "name": "__TypeKind",
  554.         "description": "An enum describing what kind of type a given `__Type` is.",
  555.         "fields": null,
  556.         "inputFields": null,
  557.         "interfaces": null,
  558.         "enumValues": [
  559.           {
  560.             "name": "SCALAR",
  561.             "description": "Indicates this type is a scalar.",
  562.             "isDeprecated": false,
  563.             "deprecationReason": null
  564.           },
  565.           {
  566.             "name": "OBJECT",
  567.             "description": "Indicates this type is an object. `fields` and `interfaces` are valid fields.",
  568.             "isDeprecated": false,
  569.             "deprecationReason": null
  570.           },
  571.           {
  572.             "name": "INTERFACE",
  573.             "description": "Indicates this type is an interface. `fields` and `possibleTypes` are valid fields.",
  574.             "isDeprecated": false,
  575.             "deprecationReason": null
  576.           },
  577.           {
  578.             "name": "UNION",
  579.             "description": "Indicates this type is a union. `possibleTypes` is a valid field.",
  580.             "isDeprecated": false,
  581.             "deprecationReason": null
  582.           },
  583.           {
  584.             "name": "ENUM",
  585.             "description": "Indicates this type is an enum. `enumValues` is a valid field.",
  586.             "isDeprecated": false,
  587.             "deprecationReason": null
  588.           },
  589.           {
  590.             "name": "INPUT_OBJECT",
  591.             "description": "Indicates this type is an input object. `inputFields` is a valid field.",
  592.             "isDeprecated": false,
  593.             "deprecationReason": null
  594.           },
  595.           {
  596.             "name": "LIST",
  597.             "description": "Indicates this type is a list. `ofType` is a valid field.",
  598.             "isDeprecated": false,
  599.             "deprecationReason": null
  600.           },
  601.           {
  602.             "name": "NON_NULL",
  603.             "description": "Indicates this type is a non-null. `ofType` is a valid field.",
  604.             "isDeprecated": false,
  605.             "deprecationReason": null
  606.           }
  607.         ],
  608.         "possibleTypes": null
  609.       },
  610.       {
  611.         "kind": "SCALAR",
  612.         "name": "Boolean",
  613.         "description": "The `Boolean` scalar type represents `true` or `false`.",
  614.         "fields": null,
  615.         "inputFields": null,
  616.         "interfaces": null,
  617.         "enumValues": null,
  618.         "possibleTypes": null
  619.       },
  620.       {
  621.         "kind": "OBJECT",
  622.         "name": "__Field",
  623.         "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.",
  624.         "fields": [
  625.           {
  626.             "name": "name",
  627.             "description": null,
  628.             "args": [],
  629.             "type": {
  630.               "kind": "NON_NULL",
  631.               "name": null,
  632.               "ofType": {
  633.                 "kind": "SCALAR",
  634.                 "name": "String",
  635.                 "ofType": null
  636.               }
  637.             },
  638.             "isDeprecated": false,
  639.             "deprecationReason": null
  640.           },
  641.           {
  642.             "name": "description",
  643.             "description": null,
  644.             "args": [],
  645.             "type": {
  646.               "kind": "SCALAR",
  647.               "name": "String",
  648.               "ofType": null
  649.             },
  650.             "isDeprecated": false,
  651.             "deprecationReason": null
  652.           },
  653.           {
  654.             "name": "args",
  655.             "description": null,
  656.             "args": [],
  657.             "type": {
  658.               "kind": "NON_NULL",
  659.               "name": null,
  660.               "ofType": {
  661.                 "kind": "LIST",
  662.                 "name": null,
  663.                 "ofType": {
  664.                   "kind": "NON_NULL",
  665.                   "name": null,
  666.                   "ofType": {
  667.                     "kind": "OBJECT",
  668.                     "name": "__InputValue",
  669.                     "ofType": null
  670.                   }
  671.                 }
  672.               }
  673.             },
  674.             "isDeprecated": false,
  675.             "deprecationReason": null
  676.           },
  677.           {
  678.             "name": "type",
  679.             "description": null,
  680.             "args": [],
  681.             "type": {
  682.               "kind": "NON_NULL",
  683.               "name": null,
  684.               "ofType": {
  685.                 "kind": "OBJECT",
  686.                 "name": "__Type",
  687.                 "ofType": null
  688.               }
  689.             },
  690.             "isDeprecated": false,
  691.             "deprecationReason": null
  692.           },
  693.           {
  694.             "name": "isDeprecated",
  695.             "description": null,
  696.             "args": [],
  697.             "type": {
  698.               "kind": "NON_NULL",
  699.               "name": null,
  700.               "ofType": {
  701.                 "kind": "SCALAR",
  702.                 "name": "Boolean",
  703.                 "ofType": null
  704.               }
  705.             },
  706.             "isDeprecated": false,
  707.             "deprecationReason": null
  708.           },
  709.           {
  710.             "name": "deprecationReason",
  711.             "description": null,
  712.             "args": [],
  713.             "type": {
  714.               "kind": "SCALAR",
  715.               "name": "String",
  716.               "ofType": null
  717.             },
  718.             "isDeprecated": false,
  719.             "deprecationReason": null
  720.           }
  721.         ],
  722.         "inputFields": null,
  723.         "interfaces": [],
  724.         "enumValues": null,
  725.         "possibleTypes": null
  726.       },
  727.       {
  728.         "kind": "OBJECT",
  729.         "name": "__InputValue",
  730.         "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.",
  731.         "fields": [
  732.           {
  733.             "name": "name",
  734.             "description": null,
  735.             "args": [],
  736.             "type": {
  737.               "kind": "NON_NULL",
  738.               "name": null,
  739.               "ofType": {
  740.                 "kind": "SCALAR",
  741.                 "name": "String",
  742.                 "ofType": null
  743.               }
  744.             },
  745.             "isDeprecated": false,
  746.             "deprecationReason": null
  747.           },
  748.           {
  749.             "name": "description",
  750.             "description": null,
  751.             "args": [],
  752.             "type": {
  753.               "kind": "SCALAR",
  754.               "name": "String",
  755.               "ofType": null
  756.             },
  757.             "isDeprecated": false,
  758.             "deprecationReason": null
  759.           },
  760.           {
  761.             "name": "type",
  762.             "description": null,
  763.             "args": [],
  764.             "type": {
  765.               "kind": "NON_NULL",
  766.               "name": null,
  767.               "ofType": {
  768.                 "kind": "OBJECT",
  769.                 "name": "__Type",
  770.                 "ofType": null
  771.               }
  772.             },
  773.             "isDeprecated": false,
  774.             "deprecationReason": null
  775.           },
  776.           {
  777.             "name": "defaultValue",
  778.             "description": "A GraphQL-formatted string representing the default value for this input value.",
  779.             "args": [],
  780.             "type": {
  781.               "kind": "SCALAR",
  782.               "name": "String",
  783.               "ofType": null
  784.             },
  785.             "isDeprecated": false,
  786.             "deprecationReason": null
  787.           }
  788.         ],
  789.         "inputFields": null,
  790.         "interfaces": [],
  791.         "enumValues": null,
  792.         "possibleTypes": null
  793.       },
  794.       {
  795.         "kind": "OBJECT",
  796.         "name": "__EnumValue",
  797.         "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.",
  798.         "fields": [
  799.           {
  800.             "name": "name",
  801.             "description": null,
  802.             "args": [],
  803.             "type": {
  804.               "kind": "NON_NULL",
  805.               "name": null,
  806.               "ofType": {
  807.                 "kind": "SCALAR",
  808.                 "name": "String",
  809.                 "ofType": null
  810.               }
  811.             },
  812.             "isDeprecated": false,
  813.             "deprecationReason": null
  814.           },
  815.           {
  816.             "name": "description",
  817.             "description": null,
  818.             "args": [],
  819.             "type": {
  820.               "kind": "SCALAR",
  821.               "name": "String",
  822.               "ofType": null
  823.             },
  824.             "isDeprecated": false,
  825.             "deprecationReason": null
  826.           },
  827.           {
  828.             "name": "isDeprecated",
  829.             "description": null,
  830.             "args": [],
  831.             "type": {
  832.               "kind": "NON_NULL",
  833.               "name": null,
  834.               "ofType": {
  835.                 "kind": "SCALAR",
  836.                 "name": "Boolean",
  837.                 "ofType": null
  838.               }
  839.             },
  840.             "isDeprecated": false,
  841.             "deprecationReason": null
  842.           },
  843.           {
  844.             "name": "deprecationReason",
  845.             "description": null,
  846.             "args": [],
  847.             "type": {
  848.               "kind": "SCALAR",
  849.               "name": "String",
  850.               "ofType": null
  851.             },
  852.             "isDeprecated": false,
  853.             "deprecationReason": null
  854.           }
  855.         ],
  856.         "inputFields": null,
  857.         "interfaces": [],
  858.         "enumValues": null,
  859.         "possibleTypes": null
  860.       },
  861.       {
  862.         "kind": "OBJECT",
  863.         "name": "__Directive",
  864.         "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.",
  865.         "fields": [
  866.           {
  867.             "name": "name",
  868.             "description": null,
  869.             "args": [],
  870.             "type": {
  871.               "kind": "NON_NULL",
  872.               "name": null,
  873.               "ofType": {
  874.                 "kind": "SCALAR",
  875.                 "name": "String",
  876.                 "ofType": null
  877.               }
  878.             },
  879.             "isDeprecated": false,
  880.             "deprecationReason": null
  881.           },
  882.           {
  883.             "name": "description",
  884.             "description": null,
  885.             "args": [],
  886.             "type": {
  887.               "kind": "SCALAR",
  888.               "name": "String",
  889.               "ofType": null
  890.             },
  891.             "isDeprecated": false,
  892.             "deprecationReason": null
  893.           },
  894.           {
  895.             "name": "locations",
  896.             "description": null,
  897.             "args": [],
  898.             "type": {
  899.               "kind": "NON_NULL",
  900.               "name": null,
  901.               "ofType": {
  902.                 "kind": "LIST",
  903.                 "name": null,
  904.                 "ofType": {
  905.                   "kind": "NON_NULL",
  906.                   "name": null,
  907.                   "ofType": {
  908.                     "kind": "ENUM",
  909.                     "name": "__DirectiveLocation",
  910.                     "ofType": null
  911.                   }
  912.                 }
  913.               }
  914.             },
  915.             "isDeprecated": false,
  916.             "deprecationReason": null
  917.           },
  918.           {
  919.             "name": "args",
  920.             "description": null,
  921.             "args": [],
  922.             "type": {
  923.               "kind": "NON_NULL",
  924.               "name": null,
  925.               "ofType": {
  926.                 "kind": "LIST",
  927.                 "name": null,
  928.                 "ofType": {
  929.                   "kind": "NON_NULL",
  930.                   "name": null,
  931.                   "ofType": {
  932.                     "kind": "OBJECT",
  933.                     "name": "__InputValue",
  934.                     "ofType": null
  935.                   }
  936.                 }
  937.               }
  938.             },
  939.             "isDeprecated": false,
  940.             "deprecationReason": null
  941.           }
  942.         ],
  943.         "inputFields": null,
  944.         "interfaces": [],
  945.         "enumValues": null,
  946.         "possibleTypes": null
  947.       },
  948.       {
  949.         "kind": "ENUM",
  950.         "name": "__DirectiveLocation",
  951.         "description": "A Directive can be adjacent to many parts of the GraphQL language, a __DirectiveLocation describes one such possible adjacencies.",
  952.         "fields": null,
  953.         "inputFields": null,
  954.         "interfaces": null,
  955.         "enumValues": [
  956.           {
  957.             "name": "QUERY",
  958.             "description": "Location adjacent to a query operation.",
  959.             "isDeprecated": false,
  960.             "deprecationReason": null
  961.           },
  962.           {
  963.             "name": "MUTATION",
  964.             "description": "Location adjacent to a mutation operation.",
  965.             "isDeprecated": false,
  966.             "deprecationReason": null
  967.           },
  968.           {
  969.             "name": "SUBSCRIPTION",
  970.             "description": "Location adjacent to a subscription operation.",
  971.             "isDeprecated": false,
  972.             "deprecationReason": null
  973.           },
  974.           {
  975.             "name": "FIELD",
  976.             "description": "Location adjacent to a field.",
  977.             "isDeprecated": false,
  978.             "deprecationReason": null
  979.           },
  980.           {
  981.             "name": "FRAGMENT_DEFINITION",
  982.             "description": "Location adjacent to a fragment definition.",
  983.             "isDeprecated": false,
  984.             "deprecationReason": null
  985.           },
  986.           {
  987.             "name": "FRAGMENT_SPREAD",
  988.             "description": "Location adjacent to a fragment spread.",
  989.             "isDeprecated": false,
  990.             "deprecationReason": null
  991.           },
  992.           {
  993.             "name": "INLINE_FRAGMENT",
  994.             "description": "Location adjacent to an inline fragment.",
  995.             "isDeprecated": false,
  996.             "deprecationReason": null
  997.           },
  998.           {
  999.             "name": "VARIABLE_DEFINITION",
  1000.             "description": "Location adjacent to a variable definition.",
  1001.             "isDeprecated": false,
  1002.             "deprecationReason": null
  1003.           },
  1004.           {
  1005.             "name": "SCHEMA",
  1006.             "description": "Location adjacent to a schema definition.",
  1007.             "isDeprecated": false,
  1008.             "deprecationReason": null
  1009.           },
  1010.           {
  1011.             "name": "SCALAR",
  1012.             "description": "Location adjacent to a scalar definition.",
  1013.             "isDeprecated": false,
  1014.             "deprecationReason": null
  1015.           },
  1016.           {
  1017.             "name": "OBJECT",
  1018.             "description": "Location adjacent to an object type definition.",
  1019.             "isDeprecated": false,
  1020.             "deprecationReason": null
  1021.           },
  1022.           {
  1023.             "name": "FIELD_DEFINITION",
  1024.             "description": "Location adjacent to a field definition.",
  1025.             "isDeprecated": false,
  1026.             "deprecationReason": null
  1027.           },
  1028.           {
  1029.             "name": "ARGUMENT_DEFINITION",
  1030.             "description": "Location adjacent to an argument definition.",
  1031.             "isDeprecated": false,
  1032.             "deprecationReason": null
  1033.           },
  1034.           {
  1035.             "name": "INTERFACE",
  1036.             "description": "Location adjacent to an interface definition.",
  1037.             "isDeprecated": false,
  1038.             "deprecationReason": null
  1039.           },
  1040.           {
  1041.             "name": "UNION",
  1042.             "description": "Location adjacent to a union definition.",
  1043.             "isDeprecated": false,
  1044.             "deprecationReason": null
  1045.           },
  1046.           {
  1047.             "name": "ENUM",
  1048.             "description": "Location adjacent to an enum definition.",
  1049.             "isDeprecated": false,
  1050.             "deprecationReason": null
  1051.           },
  1052.           {
  1053.             "name": "ENUM_VALUE",
  1054.             "description": "Location adjacent to an enum value definition.",
  1055.             "isDeprecated": false,
  1056.             "deprecationReason": null
  1057.           },
  1058.           {
  1059.             "name": "INPUT_OBJECT",
  1060.             "description": "Location adjacent to an input object type definition.",
  1061.             "isDeprecated": false,
  1062.             "deprecationReason": null
  1063.           },
  1064.           {
  1065.             "name": "INPUT_FIELD_DEFINITION",
  1066.             "description": "Location adjacent to an input object field definition.",
  1067.             "isDeprecated": false,
  1068.             "deprecationReason": null
  1069.           }
  1070.         ],
  1071.         "possibleTypes": null
  1072.       },
  1073.       {
  1074.         "kind": "OBJECT",
  1075.         "name": "PaginatorInfo",
  1076.         "description": null,
  1077.         "fields": [
  1078.           {
  1079.             "name": "count",
  1080.             "description": "Total count of available items in the page.",
  1081.             "args": [],
  1082.             "type": {
  1083.               "kind": "NON_NULL",
  1084.               "name": null,
  1085.               "ofType": {
  1086.                 "kind": "SCALAR",
  1087.                 "name": "Int",
  1088.                 "ofType": null
  1089.               }
  1090.             },
  1091.             "isDeprecated": false,
  1092.             "deprecationReason": null
  1093.           },
  1094.           {
  1095.             "name": "currentPage",
  1096.             "description": "Current pagination page.",
  1097.             "args": [],
  1098.             "type": {
  1099.               "kind": "NON_NULL",
  1100.               "name": null,
  1101.               "ofType": {
  1102.                 "kind": "SCALAR",
  1103.                 "name": "Int",
  1104.                 "ofType": null
  1105.               }
  1106.             },
  1107.             "isDeprecated": false,
  1108.             "deprecationReason": null
  1109.           },
  1110.           {
  1111.             "name": "firstItem",
  1112.             "description": "Index of first item in the current page.",
  1113.             "args": [],
  1114.             "type": {
  1115.               "kind": "SCALAR",
  1116.               "name": "Int",
  1117.               "ofType": null
  1118.             },
  1119.             "isDeprecated": false,
  1120.             "deprecationReason": null
  1121.           },
  1122.           {
  1123.             "name": "hasMorePages",
  1124.             "description": "If collection has more pages.",
  1125.             "args": [],
  1126.             "type": {
  1127.               "kind": "NON_NULL",
  1128.               "name": null,
  1129.               "ofType": {
  1130.                 "kind": "SCALAR",
  1131.                 "name": "Boolean",
  1132.                 "ofType": null
  1133.               }
  1134.             },
  1135.             "isDeprecated": false,
  1136.             "deprecationReason": null
  1137.           },
  1138.           {
  1139.             "name": "lastItem",
  1140.             "description": "Index of last item in the current page.",
  1141.             "args": [],
  1142.             "type": {
  1143.               "kind": "SCALAR",
  1144.               "name": "Int",
  1145.               "ofType": null
  1146.             },
  1147.             "isDeprecated": false,
  1148.             "deprecationReason": null
  1149.           },
  1150.           {
  1151.             "name": "lastPage",
  1152.             "description": "Last page number of the collection.",
  1153.             "args": [],
  1154.             "type": {
  1155.               "kind": "NON_NULL",
  1156.               "name": null,
  1157.               "ofType": {
  1158.                 "kind": "SCALAR",
  1159.                 "name": "Int",
  1160.                 "ofType": null
  1161.               }
  1162.             },
  1163.             "isDeprecated": false,
  1164.             "deprecationReason": null
  1165.           },
  1166.           {
  1167.             "name": "perPage",
  1168.             "description": "Number of items per page in the collection.",
  1169.             "args": [],
  1170.             "type": {
  1171.               "kind": "NON_NULL",
  1172.               "name": null,
  1173.               "ofType": {
  1174.                 "kind": "SCALAR",
  1175.                 "name": "Int",
  1176.                 "ofType": null
  1177.               }
  1178.             },
  1179.             "isDeprecated": false,
  1180.             "deprecationReason": null
  1181.           },
  1182.           {
  1183.             "name": "total",
  1184.             "description": "Total items available in the collection.",
  1185.             "args": [],
  1186.             "type": {
  1187.               "kind": "NON_NULL",
  1188.               "name": null,
  1189.               "ofType": {
  1190.                 "kind": "SCALAR",
  1191.                 "name": "Int",
  1192.                 "ofType": null
  1193.               }
  1194.             },
  1195.             "isDeprecated": false,
  1196.             "deprecationReason": null
  1197.           }
  1198.         ],
  1199.         "inputFields": null,
  1200.         "interfaces": [],
  1201.         "enumValues": null,
  1202.         "possibleTypes": null
  1203.       },
  1204.       {
  1205.         "kind": "OBJECT",
  1206.         "name": "PageInfo",
  1207.         "description": null,
  1208.         "fields": [
  1209.           {
  1210.             "name": "hasNextPage",
  1211.             "description": "When paginating forwards, are there more items?",
  1212.             "args": [],
  1213.             "type": {
  1214.               "kind": "NON_NULL",
  1215.               "name": null,
  1216.               "ofType": {
  1217.                 "kind": "SCALAR",
  1218.                 "name": "Boolean",
  1219.                 "ofType": null
  1220.               }
  1221.             },
  1222.             "isDeprecated": false,
  1223.             "deprecationReason": null
  1224.           },
  1225.           {
  1226.             "name": "hasPreviousPage",
  1227.             "description": "When paginating backwards, are there more items?",
  1228.             "args": [],
  1229.             "type": {
  1230.               "kind": "NON_NULL",
  1231.               "name": null,
  1232.               "ofType": {
  1233.                 "kind": "SCALAR",
  1234.                 "name": "Boolean",
  1235.                 "ofType": null
  1236.               }
  1237.             },
  1238.             "isDeprecated": false,
  1239.             "deprecationReason": null
  1240.           },
  1241.           {
  1242.             "name": "startCursor",
  1243.             "description": "When paginating backwards, the cursor to continue.",
  1244.             "args": [],
  1245.             "type": {
  1246.               "kind": "SCALAR",
  1247.               "name": "String",
  1248.               "ofType": null
  1249.             },
  1250.             "isDeprecated": false,
  1251.             "deprecationReason": null
  1252.           },
  1253.           {
  1254.             "name": "endCursor",
  1255.             "description": "When paginating forwards, the cursor to continue.",
  1256.             "args": [],
  1257.             "type": {
  1258.               "kind": "SCALAR",
  1259.               "name": "String",
  1260.               "ofType": null
  1261.             },
  1262.             "isDeprecated": false,
  1263.             "deprecationReason": null
  1264.           },
  1265.           {
  1266.             "name": "total",
  1267.             "description": "Total number of node in connection.",
  1268.             "args": [],
  1269.             "type": {
  1270.               "kind": "SCALAR",
  1271.               "name": "Int",
  1272.               "ofType": null
  1273.             },
  1274.             "isDeprecated": false,
  1275.             "deprecationReason": null
  1276.           },
  1277.           {
  1278.             "name": "count",
  1279.             "description": "Count of nodes in current request.",
  1280.             "args": [],
  1281.             "type": {
  1282.               "kind": "SCALAR",
  1283.               "name": "Int",
  1284.               "ofType": null
  1285.             },
  1286.             "isDeprecated": false,
  1287.             "deprecationReason": null
  1288.           },
  1289.           {
  1290.             "name": "currentPage",
  1291.             "description": "Current page of request.",
  1292.             "args": [],
  1293.             "type": {
  1294.               "kind": "SCALAR",
  1295.               "name": "Int",
  1296.               "ofType": null
  1297.             },
  1298.             "isDeprecated": false,
  1299.             "deprecationReason": null
  1300.           },
  1301.           {
  1302.             "name": "lastPage",
  1303.             "description": "Last page in connection.",
  1304.             "args": [],
  1305.             "type": {
  1306.               "kind": "SCALAR",
  1307.               "name": "Int",
  1308.               "ofType": null
  1309.             },
  1310.             "isDeprecated": false,
  1311.             "deprecationReason": null
  1312.           }
  1313.         ],
  1314.         "inputFields": null,
  1315.         "interfaces": [],
  1316.         "enumValues": null,
  1317.         "possibleTypes": null
  1318.       },
  1319.       {
  1320.         "kind": "ENUM",
  1321.         "name": "SortOrder",
  1322.         "description": null,
  1323.         "fields": null,
  1324.         "inputFields": null,
  1325.         "interfaces": null,
  1326.         "enumValues": [
  1327.           {
  1328.             "name": "ASC",
  1329.             "description": null,
  1330.             "isDeprecated": false,
  1331.             "deprecationReason": null
  1332.           },
  1333.           {
  1334.             "name": "DESC",
  1335.             "description": null,
  1336.             "isDeprecated": false,
  1337.             "deprecationReason": null
  1338.           }
  1339.         ],
  1340.         "possibleTypes": null
  1341.       },
  1342.       {
  1343.         "kind": "INPUT_OBJECT",
  1344.         "name": "OrderByClause",
  1345.         "description": null,
  1346.         "fields": null,
  1347.         "inputFields": [
  1348.           {
  1349.             "name": "field",
  1350.             "description": null,
  1351.             "type": {
  1352.               "kind": "NON_NULL",
  1353.               "name": null,
  1354.               "ofType": {
  1355.                 "kind": "SCALAR",
  1356.                 "name": "String",
  1357.                 "ofType": null
  1358.               }
  1359.             },
  1360.             "defaultValue": null
  1361.           },
  1362.           {
  1363.             "name": "order",
  1364.             "description": null,
  1365.             "type": {
  1366.               "kind": "NON_NULL",
  1367.               "name": null,
  1368.               "ofType": {
  1369.                 "kind": "ENUM",
  1370.                 "name": "SortOrder",
  1371.                 "ofType": null
  1372.               }
  1373.             },
  1374.             "defaultValue": null
  1375.           }
  1376.         ],
  1377.         "interfaces": null,
  1378.         "enumValues": null,
  1379.         "possibleTypes": null
  1380.       },
  1381.       {
  1382.         "kind": "SCALAR",
  1383.         "name": "Float",
  1384.         "description": "The `Float` scalar type represents signed double-precision fractional values as specified by [IEEE 754](https://en.wikipedia.org/wiki/IEEE_floating_point). ",
  1385.         "fields": null,
  1386.         "inputFields": null,
  1387.         "interfaces": null,
  1388.         "enumValues": null,
  1389.         "possibleTypes": null
  1390.       }
  1391.     ],
  1392.     "directives": [
  1393.       {
  1394.         "name": "include",
  1395.         "description": "Directs the executor to include this field or fragment only when the `if` argument is true.",
  1396.         "locations": [
  1397.           "FIELD",
  1398.           "FRAGMENT_SPREAD",
  1399.           "INLINE_FRAGMENT"
  1400.         ],
  1401.         "args": [
  1402.           {
  1403.             "name": "if",
  1404.             "description": "Included when true.",
  1405.             "type": {
  1406.               "kind": "NON_NULL",
  1407.               "name": null,
  1408.               "ofType": {
  1409.                 "kind": "SCALAR",
  1410.                 "name": "Boolean",
  1411.                 "ofType": null
  1412.               }
  1413.             },
  1414.             "defaultValue": null
  1415.           }
  1416.         ]
  1417.       },
  1418.       {
  1419.         "name": "skip",
  1420.         "description": "Directs the executor to skip this field or fragment when the `if` argument is true.",
  1421.         "locations": [
  1422.           "FIELD",
  1423.           "FRAGMENT_SPREAD",
  1424.           "INLINE_FRAGMENT"
  1425.         ],
  1426.         "args": [
  1427.           {
  1428.             "name": "if",
  1429.             "description": "Skipped when true.",
  1430.             "type": {
  1431.               "kind": "NON_NULL",
  1432.               "name": null,
  1433.               "ofType": {
  1434.                 "kind": "SCALAR",
  1435.                 "name": "Boolean",
  1436.                 "ofType": null
  1437.               }
  1438.             },
  1439.             "defaultValue": null
  1440.           }
  1441.         ]
  1442.       },
  1443.       {
  1444.         "name": "deprecated",
  1445.         "description": "Marks an element of a GraphQL schema as no longer supported.",
  1446.         "locations": [
  1447.           "FIELD_DEFINITION",
  1448.           "ENUM_VALUE"
  1449.         ],
  1450.         "args": [
  1451.           {
  1452.             "name": "reason",
  1453.             "description": "Explains why this element was deprecated, usually also including a suggestion for how to access supported similar data. Formatted in [Markdown](https://daringfireball.net/projects/markdown/).",
  1454.             "type": {
  1455.               "kind": "SCALAR",
  1456.               "name": "String",
  1457.               "ofType": null
  1458.             },
  1459.             "defaultValue": "\"No longer supported\""
  1460.           }
  1461.         ]
  1462.       }
  1463.     ]
  1464.   }
  1465. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement