Skip to content

Commit

Permalink
feat: vercel resource input
Browse files Browse the repository at this point in the history
  • Loading branch information
nimish-ks committed Nov 11, 2024
1 parent fbe5c69 commit bb98d59
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions backend/backend/graphene/mutations/syncing.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,9 @@ class RailwayResourceInput(graphene.InputObjectType):
id = graphene.ID(required=True)
name = graphene.String(required=True)

class VercelResourceInput(graphene.InputObjectType):
id = graphene.ID(required=True)
name = graphene.String(required=True)

class InitEnvSync(graphene.Mutation):
class Arguments:
Expand Down

0 comments on commit bb98d59

Please sign in to comment.