# Interface ExecuteQueryProps

Props for ExecuteQuery component.

# Properties

# children

children?: (queryResult) => ReactNode

Function as child component that is called to render the query results

# Parameters

Parameter Type
queryResult QueryResultData

# Returns

ReactNode


# dataSource

dataSource?: string

Data source the query is run against - e.g. Sample ECommerce

If not specified, the query will use the defaultDataSource specified in the parent SisenseContextProvider component.


# dimensions

dimensions?: Attribute[]

Dimensions of the query


# filters

filters?: Filter[]

Filters that will slice query results


# highlights

highlights?: Filter[]

Highlight filters that will highlight results that pass filter criteria


# measures

measures?: Measure[]

Measures of the query


# onDataChanged

onDataChanged?: (data) => void

Callback function that is evaluated when query results are ready

# Parameters

Parameter Type
data QueryResultData

# Returns

void