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
Path: /api-reference/overview/sdks
The Typescript example has a syntax error
const params = { query_parameters = [ QueryParameter.text("TextField", "Plain Text"), QueryParameter.number("NumberField", 3.1415926535), QueryParameter.date("DateField", "2022-05-04 00:00:00"), QueryParameter.enum("ListField", "Option 1"), ] };
should be
const params = { query_parameters : [ QueryParameter.text("TextField", "Plain Text"), QueryParameter.number("NumberField", 3.1415926535), QueryParameter.date("DateField", "2022-05-04 00:00:00"), QueryParameter.enum("ListField", "Option 1"), ] };
Also client.runQuery
client.runQuery
client .runQuery(queryID, params)
accepts only one parameter not two like the above, an object of type RunQueryArgs
RunQueryArgs
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Path: /api-reference/overview/sdks
The Typescript example has a syntax error
should be
Also
client.runQuery
accepts only one parameter not two like the above, an object of type
RunQueryArgs
The text was updated successfully, but these errors were encountered: