Inisghts

The inisghtsquery returns a series of tracking-related insights for the given date in relation to the previous two weeks.

Required Arguments

Argument

Type

Description

date

DateTime!

Date to analyze

category

InisghtsCategory

Optional. To filter by category.

Available Fields

Field Name

Type

Description

highlight

String

Value of the change

text

String

Description of the change

description

String

Supporting content

Example

query($date: Date!, $category: InsightsCategory){
    insights(date: $date, category: $category){
        category fields{ highlight text description}
    }
}

Last updated