Have you already asked yourself if there’s an easier way to pull a list of all processes IDs from your Pipefy organization? Using a GraphQL query that will be possible.
GraphQL is a query language for your API, and a server-side runtime for executing queries by using a type system you define for your data. This technology helps you search for information in your organization in a much faster and practical way.
Ok, but you are probably asking yourself what should I do?
-
First, you need to access Pipefy’s GraphQL page: https://app.pipefy.com/graphiql , that should pretty much look like this:
-
Now you should paste the query below on the left white side of the page:
Query:
{organization(id:Paste here the ORG ID){
pipes {
id
}
id
}
}
}
}
}}
It will look like this (example bellow):
-
After that, press the execute button on the top left side of your screen.
-
As a result, a list of information will appear on the right side of the screen. Click on it and select everything pressing Ctrl + A. After that copy everything pressing Ctrl + C.
5. The language you are seeing is called JSON. To convert it to a CSV format I recommend using this website: https://json-csv.com/. Paste the code generated in the whitebox on your screen and download the excel file with a list of all members inside your Pipefy organization.
There you go! Now you have a list with all processes IDs inside your Pipefy organization.