I have a schema that has queries that require inline fragments. Is there something I'm missing that allows that to to render properly or potential modification I can do to the types to make it render properly? Right now I'm only getting the base entitlement section and none of the inline fragments.
This is an example snippet of the query with the inline fragments;
entitlement {
sku
plan
status
expirationDate
startDate
lastUpdated
... on QuantifiableEntitlement {
total
}
... on DataEntitlement {
dpaVersion
}
... on PooledBandwidthEntitlement {
siteEntitlementGroup
siteEntitlementType
allocatedBandwidth
sites {
site {
id
name
}
allocatedBandwidth
}
}
... on SiteEntitlement {
siteEntitlementGroup
regionality
siteEntitlementType
site {
id
name
}
}
... on ZtnaUsersEntitlement {
ztnaUsersEntitlementGroup
}
}
I have a schema that has queries that require inline fragments. Is there something I'm missing that allows that to to render properly or potential modification I can do to the types to make it render properly? Right now I'm only getting the base entitlement section and none of the inline fragments.
This is an example snippet of the query with the inline fragments;