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.

1602 lines
46KB

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