Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
@skava/graphql / src / models / List.graphql.ts
Size: Mime:
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
  }
`