Advertisement
Guest User

Untitled

a guest
Jun 26th, 2019
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. query organisationAndInstitution($organisationName: String!, $institutionPath: String!, $fetchInstitution: Boolean!){
  2. organisation(where: {
  3. name: $organisationName
  4. }){
  5. name
  6. }
  7.  
  8. studentSolutionRelationships(where:{
  9. AND: [
  10. {
  11. status: PUBLISHED
  12. },
  13. {
  14. studentSolution: {
  15. status: PUBLISHED
  16. }
  17. }
  18. ]
  19. }) @include(if: $fetchInstitution) {
  20. status
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement