38 lines
389 B
GraphQL
38 lines
389 B
GraphQL
fragment TextCardFields on TextInterface {
|
|
id
|
|
bundle
|
|
title
|
|
content: texte
|
|
images {
|
|
id
|
|
url
|
|
alt
|
|
}
|
|
videos {
|
|
url
|
|
}
|
|
files: fichiers {
|
|
fid
|
|
filename
|
|
filemime
|
|
url
|
|
}
|
|
families: familles {
|
|
id
|
|
uuid
|
|
name
|
|
}
|
|
# field_titre
|
|
authors: auteurs {
|
|
id
|
|
uuid
|
|
name
|
|
}
|
|
edition {
|
|
id
|
|
uuid
|
|
name
|
|
}
|
|
type: __typename
|
|
}
|