Compare commits

..

No commits in common. "2657a9baf798cca05e83b0cc85e13a58fdb8d5bb" and "a5050ed08dc83545154b2cdba178fddd1109364a" have entirely different histories.

2 changed files with 2 additions and 13 deletions

View File

@ -2708,17 +2708,11 @@ export type SuccessfulAddAddShotAnnotationErrors =
| AddShotAnnotationErrors
| SuccessfulAdd;
export type TagClassGql = {
__typename?: "TagClassGQL";
id: Scalars["Int"]["output"];
name: Scalars["String"]["output"];
};
export type TagGql = {
__typename?: "TagGQL";
group?: Maybe<Scalars["String"]["output"]>;
id: Scalars["Int"]["output"];
name: Scalars["String"]["output"];
tagClasses?: Maybe<Array<TagClassGql>>;
};
export type TargetMetricsGql = {

View File

@ -714,14 +714,9 @@ type PageInfoGQL {
}
type TagGQL {
id: Int!
name: String!
tagClasses: [TagClassGQL!]
}
type TagClassGQL {
id: Int!
name: String!
group: String
}
"""