Created
May 4, 2023 15:11
-
-
Save tchak/1191c65323bdba10ab26e63863e727e3 to your computer and use it in GitHub Desktop.
exemple graphql
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 getDemarche($demarcheNumber: Int!) { | |
demarche(number: $demarcheNumber) { | |
id | |
dossiers { | |
nodes { | |
id | |
demandeur { | |
... on PersonnePhysique { | |
civilite | |
nom | |
prenom | |
} | |
... on PersonneMorale { | |
siret | |
} | |
... on PersonneMoraleIncomplete { | |
siret | |
} | |
} | |
champs { | |
id | |
label | |
stringValue | |
__typename | |
... on LinkedDropDownListChamp { | |
primaryValue | |
secondaryValue | |
} | |
} | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment