https://prefect.io logo
#show-us-what-you-got
Title
# show-us-what-you-got
a

Alex Cano

02/02/2020, 12:20 AM
Hey Prefect team, was curious if you guys can share any insights onto how the cloud platform is tested (specifically the GQL interface). I’m building a demo app with GQL for the first time and realized it could be a lot different testing the thing. I’m specifically struggling with getting my head around testing the almost unlimited number of layers of a call. I’ve been thinking about testing the relationships that should be there just to make sure everything works okay. For example against the Prefect API:
Copy code
query {
    flow {
        name
        task {
            slug
        }
    }
}
vs
Copy code
query {
    flow {
        name
    }
}