Have you already asked yourself if there’s an easier way to pull a list of all users from your Pipefy organization?
Well, there’s a thing called GraphQL query that maybe can help you.
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:
{
organizations(ids: gPaste here your Org ID]) {
members {
user {
name
}
}
}
}
It should look like this (example):
{
organizations(ids: p91162]) {
members {
user {
name
}
}
}
}
After that, press the execute button on the top left side of your screen.
A list of information will appear on the right side of the screen. The language you are seeing is JSON. To convert to a CSV format I recommend using this website: https://json-csv.com/
After that, paste it in the whitebox on your screen and download an excel file with a list of all members inside your Pipefy organization.
There you go! Now you have a list with all users inside your Pipefy organization.