Page.gql 516 B

1234567891011121314151617181920212223242526272829
  1. query Page ($id: Int!) {
  2. page: static (id: $id) {
  3. id
  4. title
  5. content: texte
  6. notes {
  7. content: note
  8. number: numero
  9. links: liens {
  10. # FIXME probably need to query titles and stuff on `Textref` or `Creation`
  11. id
  12. type: __typename
  13. variant: familles {
  14. id
  15. }
  16. ... on Textprod {
  17. parents: text_de_depart {
  18. id
  19. variant: familles {
  20. id
  21. }
  22. }
  23. }
  24. }
  25. }
  26. }
  27. }