Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Request data by specifying the fields you want to retrieve.

graph

1code
Code Block
language
graphql
query {  

2

Code Block

  user(id: "123") {  

3

Code Block

    name  

4

Code Block
    email  

5

Code Block

  }  

6

Code Block

}



#### Mutations:

Modify data by defining the operation and providing input parameters.

GraphQL

...

1
Code Block
mutation {  

2

Code Block

  createUser(input: { name: "Alice", email: "[alice@example.com](mailto:alice@example.com)" }) {  

3

Code Block

    id  

4

Code Block

    name  

5

Code Block
  }  

6

Code Block

}



By understanding these basics, you're better equipped to navigate and comprehend Originate's GraphQL API documentation. As we proceed, you'll notice that the API documentation leverages these concepts to provide a structured and efficient way to interact with Originate's loan management platform.

...

Our "Getting Started" section will guide you through your first steps in using Originate's GraphQL API. You'll learn how to access the API, authenticate, and structure your GraphQL requests. This foundation will set you up for success as you begin integrating with our platform.

What’s Next

Page

External Link