All Downloads are FREE. Search and download functionalities are using the official Maven repository.

graphql.Queries.GetTraceDetails.graphql Maven / Gradle / Ivy

There is a newer version: 2.2.0
Show newest version
    query getTraceDetailsQuery(
      $traceId: UUID!
      $first: Int
      $last: Int
      $before: Cursor
      $after: Cursor
    ) {
      trace: traceById(id: $traceId) {
        links(first: $first, last: $last, before: $before, after: $after) {
          nodes {
            raw
            data
          }
          ...PaginationInfoOnLinksConnectionFragment
        }
      }
    }
    ${PaginationInfoOnLinksConnectionFragment}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy