Hi i was wondering if 8base provides a search function for data stored in my Database
For example, in my DB I have a table of services, and I want to search it by it’s name, does 8base provides a function for that?
Hello Jefferson,
Sure! If you want to find the record via DB you can use filter:
Set the necessary parameters:
Result:
Also, you can find the necessary record via query:
query {
servicesList(
filter:{name:{equals:"seven"}}){
items{
name
id
}
}
}
Here’s the result:
Please let me know if you have any questions.
Lada Kokotova | Technical Support Engineer