add generic text field fragment

This commit is contained in:
axolotle
2021-05-09 00:04:44 +02:00
parent bd85323e9b
commit 5fc3c01f14
+42
View File
@@ -0,0 +1,42 @@
#import "./TextCardFields.gql"
fragment TextFields on TextInterface {
...TextCardFields
... on Textref {
tags {
id
name
}
strangeness: degres_detrangement
notes {
content: note
number: numero
}
}
... on Textprod {
tags: tagsprod {
id
name
}
notes {
content: note
number: numero
links: liens {
id
bundle
title
families: familles {
id
name
}
# field_titre FIXME ?
authors: auteurs {
id
name
}
}
}
}
}