Documentation

Our API is based on GraphQL

Getting started with GraphQL

Read more here: http://graphql.org/learn/

One end point can expose many potential operations. Getting data, setting data, and calling functions. Operations are fluid and will respond based on how they’re called, for example you can ask for certain parameters when requesting an object and the api will respond with just those parameters.

Connected Cars GraphQL API

Our API is exposed on one endpoint: https://api.connectedcars.io/graphql/graphiql/

You can submit all requests to this URL. You can also browse to it to and ‘explore’ it by clicking on the ‘Docs’ link on that pages top right corner.

Mutations

Mutations allow you to interact with a GrapQL API. Here the ways you can perform an action against our API.

Signup required

  • email
  • password

Optional

  • language (EN/DK)
mutation {
  signup(email: "email@address.com", password: "password", lang: EN) {
    id
    email
  }
}