Test JSON API for GraphQL

Users API

Users API

Companies API

GraphQL

graphql UI
/graphql
is graphql endpoint to call example query
query ExampleQuery {
  users(limit: 3, firstName:"Bryan") {
    firstName
    countryCode
    country {
      name
    }
    company {
      name
    }
  }
  countries(iso2: "RU") {
    iso3
  }
}