Versions Compared

Key

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

...

Request data by specifying the fields you want to retrieve.

graphGraphQl

Code Block
languagegraphql
query {  
  user(id: "123") {  
    name  
    email  
  }  
}

...

Modify data by defining the operation and providing input parameters.

GraphQL

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

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.

Now that we've covered the essentials, let's continue our journey into Originate's GraphQL API and explore how you can harness its power to streamline loan management operations.

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.

...