TextFields.gql 612 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. #import "./TextCardFields.gql"
  2. fragment TextFields on TextInterface {
  3. ...TextCardFields
  4. ... on Textref {
  5. tags {
  6. id
  7. name
  8. }
  9. strangeness: degres_detrangement
  10. notes {
  11. content: note
  12. number: numero
  13. }
  14. }
  15. ... on Textprod {
  16. tags: tagsprod {
  17. id
  18. name
  19. }
  20. notes {
  21. content: note
  22. number: numero
  23. links: liens {
  24. id
  25. bundle
  26. title
  27. families: familles {
  28. id
  29. name
  30. }
  31. # field_titre FIXME ?
  32. authors: auteurs {
  33. id
  34. name
  35. }
  36. }
  37. }
  38. }
  39. }