Collection types

This list contains all query and inputs types for the collection endpoints.


Collection

Fields

  • Name
    id
    Type
    ID!
    Description

    Unique identifier for the collection.

  • Name
    updated_at
    Type
    TimeStamp!
    Description

    Timestamp of when the collection was updated.

    Arguments

  • Name
    format
    Type
    String
    Description

    The supported format parameters: fromNow YYYY-MM-DD HH:mm:ss

  • Name
    suffix
    Type
    Boolean
    Description

    TimeStamp suffix

  • Fields

    scalar TimeStamp

  • Name
    created_at
    Type
    TimeStamp!
    Description

    Timestamp of when the collection was created.

  • Name
    type
    Type
    CollectionType!
    Description

    The collection type.

    enum CollectionType {
    	specific_funnels
    	specific_keywords
    }
    
  • Name
    funnels
    Type
    [CollectionFunnelItem!]!
    Description

    The collection funnels.

    type CollectionFunnelItem {
    	funnel_uid: ID!
    	funnel: Funnel!
    }
    
  • Name
    keywords
    Type
    [CollectionKeyword!]!
    Description

    The collection keywords.

    type CollectionKeyword {
    	keyword: String!
    }
    
  • Name
    name
    Type
    String!
    Description

    The collection name.

  • Name
    description
    Type
    String!
    Description

    The collection description.

  • Name
    result
    Type
    [CollectionResult!]!
    Description

    The collection result.

    type CollectionResult {
    	title: String!
    	price: Float!
    	thumbnail: String
    	compare_at_price: Float!
    	reviews_value: Float!
    	link: String!
    	funnel_uid: String!
    	cursor: String!
    }
    

CollectionInput

Fields

  • Name
    type
    Type
    CollectionType!
    Description

    The collection type.

    enum CollectionType {
    	specific_funnels
    	specific_keywords
    }
    
  • Name
    items
    Type
    [String!]!
    Description

    The collection items.

  • Name
    name
    Type
    String!
    Description

    The collection name.

  • Name
    description
    Type
    String!
    Description

    The collection description.


CollectionConnection

Fields

  • Name
    pageInfo
    Type
    PageInfo!
    Description

    Collection connection page info.

    type PageInfo {
    	hasNextPage: Boolean!
    	hasPreviousPage: Boolean!
    	startCursor: String
    	endCursor: String
    }
    
  • Name
    edges
    Type
    [CollectionEdge]
    Description

    The Collection connection edges.

    type CollectionEdge {
    	node: Collection
    	cursor: String!
    }