Hello, I’m look for a solution similar to the query findCard bellow, but to get IDs from records in apollo databases. Is there a way to get the ID passing as parameters like fields and fields values?
query GetCardIdByFieldValue($pipeId: ID!, $fieldId: String!, $fieldValue: String!) {
findCards(
pipeId: $pipeId
search: {
fieldId: $fieldId,
fieldValue: $fieldValue
}
) {
edges {
node {
id
}
}
}
}