From 9b27d5e37b1d3dd562165d02d53b9c477758c581 Mon Sep 17 00:00:00 2001 From: "dls-graph-schema-federator[bot]" <183111110+dls-graph-schema-federator[bot]@users.noreply.github.com> Date: Fri, 21 Nov 2025 14:32:00 +0000 Subject: [PATCH] feat: update workflows schema to graph-proxy@v0.1.13 --- schema/workflows.graphql | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/schema/workflows.graphql b/schema/workflows.graphql index 166ee23..2ee7168 100644 --- a/schema/workflows.graphql +++ b/schema/workflows.graphql @@ -53,6 +53,11 @@ type Mutation { submitWorkflowTemplate(name: String!, visit: VisitInput!, parameters: JSON!): Workflow! } +""" +Represents Relay Node types +""" +union NodeValue = Workflow + """ Information about pagination in a connection """ @@ -79,6 +84,7 @@ type PageInfo @shareable { The root query of the service """ type Query { + node(id: ID!): NodeValue """ Get a single [`Workflow`] by proposal, visit, and name """ @@ -241,6 +247,10 @@ input VisitInput { } type Workflow { + """ + The unique ID derived from the visit and name + """ + id: ID! """ The name given to the workflow, unique within a given visit """