Using GraphQL

I have an http connection to an app (First Dollar) and need to use GraphQL to import. Is there a sample for how the request should look? This is my first time using GraphQL so I am not familiar with how to do it in Celigo (but do have it working in Postman).

mutation CreateOrganization($input: CreateOrganizationInput!) {

createOrganization(input: $input) {

... on CreateOrganizationResult {

organization {

id

name

}

}

... on BadRequestError {

code

message

}

... on InternalServerError {

code

message

}

}

}
 
{

"input":{

"name":"Clearwater Testing"

}

}
0

Comments

1 comment
Date Votes

Please sign in to leave a comment.

 

Didn't find what you were looking for?

New post