Skip to content
Release: Australia · Updated: 2026-03-12 · Official documentation · View source

NowGraphQLService interface- Android

The NowGraphQLService interface provides functions that allow you to make GraphQL requests to your ServiceNow through its GraphQL API.

Note: The GraphQL API works for guest users in the base ServiceNow system.

For more details on the ServiceNow GraphQL API, see Query record data using the GraphQL API framework.

NameTypeDescription
configurationNowServiceConfigurationConfiguration to associate with the service.

Parent Topic:Mobile SDK - Android

NowGraphQLService - graphQLRequest(String query)

Passes the specified GraphQL query to the associated ServiceNow instance and returns the query results.

NameTypeDescription
queryStringGraphQL query to pass.
TypeDescription
Call<Byte Array>Query response.
fun makeGraphQLRequest(query: String) { 
  val call = graphQLService.graphQLRequest(query) 
  call.enqueue( 
    { response -> handleResponse(response) },
    { nowDataError -> handleError(nowDataError) } 
  )
}