WellLine
© Copyright 2019 MAANA, Inc.
Search…
Introduction
Getting Started
WellLine Interface
TimeLine Service
Event Engineering
Installation and Configuration
Support
WellLine Cookbook
Notifications
TimeLine Service GraphQL API
Using the GraphQL Playground
Working With TimeLine
Working with TimeLineSummary
Working with TimeLineSeries
Working with Event
Working with Entity
Working with Service and Tenant
Other Resources
Powered By
GitBook
Working with Service and Tenant
How do I Get Details About a Specific Tenant
Problem
I have an
admin role
in the WellLine system and need to find out information about a tenant I have access to.
Solution
Use the capabilities provided by the
tenant
query.
Query
The following query shows how to get the index information of a specific tenant.
1
query
tenant
{
2
tenant
(
tenantId
:
"equinor"
)
{
3
id
4
indexInfo
{
5
id
6
count
7
bytes
8
}
9
}
10
}
Copied!
Description
Only users with
admin
roles have access to this query
See the
tenants
page for more information on tenants
How do I Get Details About the Entire System
Problem
I have an
admin role
in the WellLine system and need to find out information about a the entire system.
Solution
Use the capabilities provided by the
system
query.
Query
The following query shows how to get the service-level information of an entire WellLine installation / system.
1
query
service
{
2
serviceInfo
{
3
name
4
environment
5
}
6
}
Copied!
Description
Only users with
admin
roles have access to this query
Previous
Working with Entity
Next
Other Resources
Last modified
2yr ago
Copy link
Contents
How do I Get Details About a Specific Tenant
How do I Get Details About the Entire System