# Retrieve Tests https://api-docs.lumar.io/docs/protect/tests/retrieve-tests The following query gets the tests for a given test suite: ```graphql query GetTestSuiteTests($testSuiteId: ObjectID!) { node(id: $testSuiteId) { ... on TestSuite { tests(first: 100) { nodes { id thresholdPredicate absoluteThreshold relativeThreshold severity reportTemplate { name code } } } } } } ```