Skip to main content

Arguments

after : String
before : String
effectiveFrom : DateTime

Start of the time range to query configurations for.

effectiveTo : DateTime

End of the time range to query configurations for.

first : Int
includeChildren : Boolean

Include all child targets of the specified target.

last : Int
target : TargetInput! required

The target to query configurations for.

Returns

BillingTriggerConfigurationsConnection

Pagination object for billing trigger configurations.

Allowed Viewers

Customer Partner User Third party

Required Permissions

Can query billing information

Query Complexity

1

Examples

The example data in the variables and responses below are autogenerated values designed to resemble real inputs. They do not represent actual customer data, and in some cases may require additional validation.

Query

query BillingTriggerConfigurations( $after: String, $before: String, $effectiveFrom: DateTime, $effectiveTo: DateTime, $first: Int, $includeChildren: Boolean, $last: Int, $target: TargetInput! ) { billingTriggerConfigurations( after: $after, before: $before, effectiveFrom: $effectiveFrom, effectiveTo: $effectiveTo, first: $first, includeChildren: $includeChildren, last: $last, target: $target ) { edgeCount edges { ...BillingTriggerConfigurationsEdgeFragment } pageInfo { ...PageInfoFragment } totalCount } }

Variables

{ "after": "YXJyYXljb25uZWN0aW9uOjEw=", "before": "YXJyYXljb25uZWN0aW9uOjEw=", "effectiveFrom": "1991-09-28T18:57:35.232404+00:00", "effectiveTo": "2011-06-15T08:28:28.895984+00:00", "first": 10, "includeChildren": true, "last": 10, "target": TargetInput }

Response

{ "data": { "billingTriggerConfigurations": { "edgeCount": 41, "edges": [BillingTriggerConfigurationsEdge], "pageInfo": PageInfo, "totalCount": 95 } } }