You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1487 lines
43KB

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