Hello, I want to know if I am doing something wron...
# prefect-community
j
Hello, I want to know if I am doing something wrong in here, because this is not working as expected. I created a new API key in Prefect Cloud. I used that key in my python prefect client to send a graphql query. I send it and I get results. So the weird behaviour happens when I run the same exact query over the interactive API from the cloud, I get different results. I wonder why? This is my query
Copy code
{
  flow_group(
    where: {
      flows: {
        project: {
          name: { _eq: "sonarlink-dev" }
        }
      }
    }
    order_by: {created: desc}
    limit: 100 
  ) {
    name
    id
    labels
    schedule
    flows { id name version project { id name } }
  }
}
1
1️⃣ 1
c
are you running as exactly the same user in the same tenant?
j
maybe that is the problem. How to check that?
I solved the problem... I needed to be logged from my PC: "prefect auth cloud" and it is working
1
thanks!
🙌 1