Skip to main content

Data binding components

Data binding provider#

The DataBindingProvider component is used to provide data for the data binding.

<DataBindingProvider stateComponent={FeedbackRenderer} />

Props#

PropDescription

stateComponent

JSX.Element | null

A component that is rendered when the component is in loading state.

Required

Entity sub tree#

The EntitySubTree component is used to render the entity sub tree.

<EntitySubTree entity="Post(id = $id)" />

Props#

PropDescription

entity

string

The name of the entity. You can use query language to filter the entities.

Required

Entity list sub tree#

The EntityListSubTree component is used to render the entity list sub tree.

<EntityListSubTree entities="Post" />

Props#

PropDescription

entities

string

The name of the entity. You can use query language (Qualified entity list) to filter the entities.

Required