We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Given a GraphQL query like:
query { projectItem(id: 1) { bidItem { id name } } }
And an input query like:
mutation { saveProjectItem(input: SaveProjectItemInput) } input SaveProjectItemInput { bidItem: EntityId } input EntityId { id: String! }
We'd like to bind that to a form like:
const formConfig: ObjectConfig<SaveProjectItem> = { bidItem: { type: "value", localKeys: "name" } } const jsx = <LazyBoundBidItemSelect field={form.bidItem}
And be able to pass the SelectField.options: initial + lambda
SelectField.options: initial + lambda
Questions:
formConfig.bidItem
type: "value"
type: "object"
LazyBoundBidItemSelect
FieldState<{ id: string; name: string}>
ObjectState<{ ... }>
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Given a GraphQL query like:
And an input query like:
We'd like to bind that to a form like:
And be able to pass the
SelectField.options: initial + lambda
Questions:
formConfig.bidItem
atype: "value"
ortype: "object"
with nested keys?LazyBoundBidItemSelect
aFieldState<{ id: string; name: string}>
or anObjectState<{ ... }>
? Does it matter?The text was updated successfully, but these errors were encountered: