Versions Compared

Key

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

You can run queries on real Scope data using any HTTP compliant client (HTTP Client) or GraphQL integrated development environment (GraphQL IDE). GraphQL IDEs are typically easier to work with because they include docs, syntax highlighting, and validation errors.

...

Scope GraphQL Explorer is an instance of GraphiQL (a GraphQL IDE) that is available in-browser at https://cms.scopear.com/api/v3/graphql/explorer.

Note

Note: The Scope GraphQL Explorer has been temporarily disabled, but you can still explore the graph using a local GraphiQL client, or any other similar client (see below).

Using GraphiQL

To use the GraphiQL app, download and install it from https://www.electronjs.org/apps/graphiql.

...

  1. Getting an OAuth token can be done thru CMS

    1. Log in to CMS as your authorized user and open the Developers Console (F12 usually does this)

    2. Open the Application tab and copy the Auth token from Cookies

  2. Ensure the authenticated user has the Access Control Rights required by the query to be executed (See Authorization Errors & Reporting Admins).

  3. Launch GraphiQL.

  4. In the upper-right corner of GraphiQL, click Edit HTTP Headers.

  5. If you don’t already have GraphiQL setup with Headers, do the following;

    1. In the upper-right corner of the modal dialog, click + Add Header.

    2. In the Key field, enter Authorization. In the Value field, enter Token token=<token>, where <token> is your generated OAuth token.

    3. Click Save to save the token.

    4. If you hold an analyst license, you can obtain your token thru your user profile on CMS

      1. Login and navigate to Edit Profile

      2. The API Key on the bottom right is your token

    5. In the upper-right corner of the modal dialog, click + Add Header.

    6. In the Key field, enter PrivateAccessCode. In the Value field, enter Token token=YWRtaW4xMjU6c2VjcmV0MTI1, where YWRtaW4xMjU6c2VjcmV0MTI1 is a literal value (used to enable early access to the Scope GraphQL API).

    7. Click Save to save the token.

    8. To return to the editor, click outside of the Edit HTTP Headers modal.

  6. In the GraphQL Endpoint field, enter the following (include company permalink if necessary)

    1. Image RemovedImage Added
  7. In the Method dropdown menu, select POST.

...