concepts.dot 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. digraph graphql {
  2. rankdir=LR;
  3. overlap=false;
  4. // Primitive types.
  5. node [ shape="ellipse" ];
  6. Boolean;
  7. String;
  8. node [ shape=record ];
  9. enumValue [ label="<pk>__EnumValue
  10. |<deprReason>deprecationReason
  11. |<desc>description
  12. |<isDepr>isDeprecated!
  13. |<name>name!
  14. " ];
  15. field [label="<pk>__Field
  16. |<args>args[]!
  17. |<deprReason>deprecationReason
  18. |<desc>description
  19. |<isDepr>isDeprecated!
  20. |<name>name
  21. |<resolve>resolve()
  22. |<type>type!
  23. "];
  24. g_node [ label="<pk>Node" ];
  25. inputValue [ label="<pk>__InputValue
  26. |<default>defaultValue
  27. |<desc>description
  28. |<name>name
  29. |<type>type
  30. "];
  31. kind [ label="<pk>__TypeKind
  32. |ENUM
  33. \nINPUT_OBJECT
  34. \nINTERFACE
  35. \nLIST
  36. \nNON_NULL
  37. \nOBJECT
  38. \nSCALAR
  39. \nUNION
  40. "];
  41. schema [ label="<pk>Schema|<query>query|<mutation>mutation|<subscription>subscription" ];
  42. type [ label="<pk>__Type
  43. |<desc>description
  44. |<enum>enumValues(includeDeprecated: Boolean)[]
  45. |<fields>fields(includeDeprecated: Boolean)[]
  46. |<input>inputFields[]!
  47. |<interfaces>interfaces[]!
  48. |<kind>kind!
  49. |<name>name
  50. |<of>ofType
  51. |<pTypes>possibleTypes[]!
  52. "];
  53. edge [ label="is_a", color=silver];
  54. enumValue:deprReason -> String;
  55. enumValue:desc -> String;
  56. enumValue:isDepr -> Boolean;
  57. enumValue:name -> String;
  58. field:args -> inputValue:pk;
  59. field:deprReason -> String;
  60. field:desc -> String;
  61. field:isDepr -> Boolean;
  62. field:name -> String;
  63. field:type -> type:pk;
  64. inputValue:default -> String;
  65. inputValue:desc -> String;
  66. inputValue:name -> String;
  67. inputValue:type -> type:pk;
  68. schema:mutation -> type:pk;
  69. schema:query -> type:pk;
  70. schema:subscription -> type:pk;
  71. type:desc -> String;
  72. type:enum -> enumValue:pk;
  73. type:fields -> field:pk;
  74. type:input -> inputValue:pk;
  75. type:interfaces -> type:pk;
  76. type:kind -> kind:pk;
  77. type:name -> String;
  78. type:of -> type:pk;
  79. type:pTypes -> type:pk;
  80. edge [ label="returns", color=lightblue ];
  81. field:resolve -> g_node:pk;
  82. edge [ style=solid; color=silver; label="extends"];
  83. }