cb010d90fe
Add a post hook to restore workflow sub-entities
17 lines
315 B
TypeScript
17 lines
315 B
TypeScript
import { gql } from '@apollo/client';
|
|
|
|
export const SERVERLESS_FUNCTION_FRAGMENT = gql`
|
|
fragment ServerlessFunctionFields on ServerlessFunction {
|
|
id
|
|
name
|
|
description
|
|
runtime
|
|
timeoutSeconds
|
|
latestVersion
|
|
latestVersionInputSchema
|
|
publishedVersions
|
|
createdAt
|
|
updatedAt
|
|
}
|
|
`;
|