Skip to content
This repository has been archived by the owner on Jun 5, 2024. It is now read-only.

Commit

Permalink
decimal input for budget (#76)
Browse files Browse the repository at this point in the history
  • Loading branch information
Kolezhanchik committed Sep 12, 2023
1 parent 0865eb8 commit 1405d93
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 24 deletions.
8 changes: 4 additions & 4 deletions prisma/schema.prisma
Original file line number Diff line number Diff line change
Expand Up @@ -167,10 +167,10 @@ type Quota {
}

type Budget {
dev Int
test Int
prod Int
tools Int
dev Float
test Float
prod Float
tools Float
}

type CommonComponents {
Expand Down
16 changes: 8 additions & 8 deletions schema.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -276,17 +276,17 @@ type Quota {
}

type Budget {
prod: Int!
test: Int!
dev: Int!
tools: Int!
prod: Float!
test: Float!
dev: Float!
tools: Float!
}

input BudgetInput {
prod: Int!
test: Int!
dev: Int!
tools: Int!
prod: Float!
test: Float!
dev: Float!
tools: Float!
}

input FilterPrivateCloudProjectsInput {
Expand Down
26 changes: 14 additions & 12 deletions src/__generated__/resolvers-types.ts

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 1405d93

Please sign in to comment.