Hello, I have two boards: Customers and Jobs
Customers includes all of my customers
Jobs includes all of the jobs we’re working
Jobs has a “Connect board” column that links to the Customers board. This column contains which Customer the Job is for.
Customers can have many Jobs at any given time.
What is the best way to pull the Jobs for a specific Customer?
And can this be done in a single GraphQL query?
I can find my customer like this (Ex. the customer name is Jill Mahomes):
query {
items_by_column_values (board_id: 123456789, column_id: "name", column_value: "Jill Mahomes") {
id
name,
column_values {
id,
value,
text
}
}
}
The “link to projects” field looks like this:
{
"id": "link_to_projects",
"value": "{\\"linkedPulseIds\\":l{\\"linkedPulseId\\":1308587615},{\\"linkedPulseId\\":1308587623}]}",
"text": ""
}
How do I then use the linkedPulseIds to pull my related Jobs? Can this be done in a single query or do I need some scripting to dig into the JSON, grab the IDs, then run another query?
Thank you!