TextsDepart.gql 285 B

1234567891011121314151617181920
  1. #import "../fragments/TextFields.gql"
  2. query TextsDepart {
  3. textsdepart {
  4. ...TextFields
  5. children: text_produits {
  6. id
  7. }
  8. siblings: text_en_rebond {
  9. id
  10. title
  11. authors: auteurs {
  12. name
  13. }
  14. edition {
  15. name
  16. }
  17. }
  18. }
  19. }