feat: Application types generation from project GQL schema's (#8995)

This commit is contained in:
Adrien de Peretti
2024-09-06 15:15:32 +05:30
committed by GitHub
parent ac30a989f4
commit 2c5e72d141
92 changed files with 5129 additions and 443 deletions
@@ -0,0 +1,12 @@
export default `
type SalesChannel {
id: ID!
name: String!
description: String
is_disabled: Boolean!
created_at: DateTime!
metadata: JSON
updated_at: DateTime!
deleted_at: DateTime
}
`