Sha256: fa5fe19b8db7f58b84c09797f0bed7e4750ae114e721df3ba2f149c0916deab6
Contents?: true
Size: 780 Bytes
Versions: 2
Compression:
Stored size: 780 Bytes
Contents
module Gitlab module Triage module GraphqlQueries ThreadsQuery = <<-GRAPHQL.freeze # rubocop:disable Naming/ConstantName query($source: ID!, $after: String, $iids: [String!]) { %{source_type}(fullPath: $source) { id %{resource_type}(after: $after, iids: $iids%{group_query}) { pageInfo { hasNextPage endCursor } nodes { id discussions { nodes { notes { nodes { system } } } } } } } } GRAPHQL end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
gitlab-triage-1.14.2 | lib/gitlab/triage/graphql_queries/threads_query.rb |
gitlab-triage-1.14.1 | lib/gitlab/triage/graphql_queries/threads_query.rb |