Find all records where 'Client' equals @client_nam...
# 🤝help
f
How to give this as selector query
in tables getting result invalid selector query
a
Hey @famous-librarian-59957, the selectors are pretty good with natural language. Depending on how your table is set up, you can make a selector with a prompt as simple as "last name X" and get good results. Then, you can use the "find data" card in a flow to get the data.

https://cdn.discordapp.com/attachments/1144162040269774928/1144216510592720916/image.png

https://cdn.discordapp.com/attachments/1144162040269774928/1144216510974406786/image.png

https://cdn.discordapp.com/attachments/1144162040269774928/1144216511238643862/image.png

https://cdn.discordapp.com/attachments/1144162040269774928/1144216511473532968/image.png

https://cdn.discordapp.com/attachments/1144162040269774928/1144216511737770064/image.png

https://cdn.discordapp.com/attachments/1144162040269774928/1144216511985238056/image.png

we can also use a short biut of code to clean the results up:
Copy code
js
const people = workflow.jacksons.map((person) => {
  return person.name
})
workflow.jacksons = people.join(' and ')

https://cdn.discordapp.com/attachments/1144162040269774928/1144217124542357565/image.png

f
ok
5 Views