NodeFull.gql 814 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. # This fragment queries data needed for an object to be displayed as a `Node`
  2. fragment NodeFull on MapItemInterface {
  3. id
  4. ... on Textref {
  5. preTitle: field_titre_regular
  6. italTitle: field_titre_italique
  7. link: lien_reference {
  8. title
  9. url
  10. }
  11. edition {
  12. name
  13. }
  14. notes {
  15. content: note
  16. number: numero
  17. }
  18. }
  19. ... on Textprod {
  20. notes {
  21. content: note
  22. number: numero
  23. links: liens {
  24. # FIXME probably need to query titles and stuff on `Textref` or `Creation`
  25. id
  26. type: __typename
  27. variant: familles {
  28. id
  29. }
  30. ... on Textprod {
  31. parents: text_de_depart {
  32. id
  33. variant: familles {
  34. id
  35. }
  36. }
  37. }
  38. }
  39. }
  40. }
  41. }