Repository URL to install this package:
|
Version:
2.0.11 ▾
|
import { gql } from 'apollo-server'
export default gql`
type ListItemInfo {
additionalinfo: [LabelValue]
}
type ListProperties {
iteminfo: ListItemInfo
}
type List {
identifier: ID!
properties: ListProperties
}
type ListResponseChildren {
lists: [List]
}
type ListResponseItemInfo {
flags: [LabelValue]
}
type ListResponseState {
count: String
}
type ListResponseProperties {
iteminfo: ListResponseItemInfo
state: ListResponseState
}
type ListResponse {
children: ListResponseChildren
properties: ListResponseProperties
type: String
responseMessage: String
responseCode: String
}
`