Hi!
I am new at using graphql with pipefy API.
I am trying to retrieve all the “Record Infos” of table rows using the pipefy API.
Using
{"query":"{ table_records(table_id: 12345678) { edges { node { id title done table { id } created_at created_by { id } } } } }"}',
I am able to retrieve preliminary information about each row in the table. This is a sample result:
>0] => stdClass Object
(
node] => stdClass Object
(
id] => 99999999
title] => ROW TITLE
done] =>
table] => stdClass Object
(
id] => AAA-BBBB
)
created_at] => 2022-02-10T09:19:48-05:00
created_by] => stdClass Object
(
id] => 11111111
)
)
)
However I am struggling to find the proper method to retrieve the node’s complete content; Meaning all the fields and their content shown in the “Record Infos” section when using the pipefy app.
Thank you for your help
Enrique