Solved
Filter the output through GET API
i have a table of 6 fields . i am requesting the data with GET request so that i want to show only 3 fields from the table. How can i do that?
i have a table of 6 fields . i am requesting the data with GET request so that i want to show only 3 fields from the table. How can i do that?
You should be able to add the "selection" parameter inside of your a!query() function to specify which fields should be returned. Try adding something like this:
selection: {
a!queryColumn(field: "field_one"),
a!queryColumn(field: "field_two"),
a!queryColumn(field: "field_three")
}Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.