I have activated “Developer Mode” in my account. I found phone number column name is 1_phone95
Using webhook, I receive pulseId which is row id(i guess). webhook doesn’t send all column values. So i try to read 1_phone95 column values by the following code snippet
$query = ‘query { pulse (ids: 1339686138) { column_values { id type } } }’;
But i get the following error:
{“errors”:{{“message”:“Field ‘pulse’ doesn’t exist on type ‘Query’”,“locations”:t{“line”:1,“column”:9}],“fields”:“query”,“pulse”]}],“account_id”:8374454}
Now my question is, how do i read all columns or a single column(1_phone95) value? Is it by pulseId or is there are any further technique?
I am highly interested to study query in detail. May i have study/documentation link please.
Thanks in advance.