blob: 95a807f20afd46263fe6a0f24353abec8cc6121a [file] [log] [blame]
// Copyright 2019 The Flutter Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
const String cirusStatusQuery = r'''
query BuildBySHAQuery($owner: String!, $name: String!, $SHA: String) {
searchBuilds(repositoryOwner: $owner, repositoryName: $name, SHA: $SHA) {
id branch latestGroupTasks {
id name status
}
}
}''';