The OmicIDXGraphqlClient is the entry point into the OmicIDX API. Its main function is to perform calls out to the graphql API url and return results. Queries are constructed elsewhere using the OmicIDXQuery class.

OmicIDXGraphqlClient

Format

An object of class R6ClassGenerator of length 24.

Details

GraphQL is a query language for APIs and a runtime for fulfilling those queries with existing data. GraphQL provides a complete and understandable description of the data in the API, gives clients the power to ask for exactly what they need and nothing more, makes it easier to evolve APIs over time, and enables powerful developer tools.

GraphQL has only a *single url*, called the endpoint, which allows access to all data in the API. GraphQL is also a *query language*. It is the GraphQL query that is submitted to the GraphQL endpoint that results in data being returned.