Created
July 30, 2020 09:40
-
-
Save tchak/f1c004efeac1a5708b85ec8f15ef515f to your computer and use it in GitHub Desktop.
Query avec PieceJustificativeChamp
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
query getDossier($dossierNumber: Int!) { | |
dossier(number: $dossierNumber) { | |
id | |
number | |
champs { | |
id | |
label | |
stringValue | |
... on PieceJustificativeChamp { | |
file { | |
filename | |
contentType | |
url | |
} | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment