Data binding
Data binding provider​
The DataBindingProvider
component is used to provide data for the data binding.
<DataBindingProvider stateComponent={FeedbackRenderer} />
Props​
Prop | Description |
---|---|
| 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​
Prop | Description |
---|---|
| 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​
Prop | Description |
---|---|
| string The name of the entity. You can use query language (Qualified entity list) to filter the entities. Required |