@@ -771,6 +771,8 @@ input DeleteInput {
771771 id : ID !
772772}
773773
774+ union DeleteProjectAssetsPayload = OperationInfo | ProjectAssetsDeleteTypeMutationResponseType
775+
774776union DeleteProjectPayload = OperationInfo | ProjectType
775777
776778union DeleteTutorialPayload = OperationInfo | TutorialType
@@ -958,6 +960,7 @@ type Mutation {
958960 createTutorial (data : TutorialCreateInput ! ): CreateTutorialPayload ! @isAuthenticated
959961 createTutorialAsset (data : TutorialAssetCreateInput ! ): CreateTutorialAssetPayload ! @isAuthenticated
960962 deleteProject : DeleteProjectPayload ! @isAuthenticated
963+ deleteProjectAssets (projectId : ID ! , assetInputType : [ProjectAssetInputTypeEnum ! ]! ): DeleteProjectAssetsPayload ! @isAuthenticated
961964 deleteTutorial : DeleteTutorialPayload ! @isAuthenticated
962965 login (username : String ! , password : String ! ): UserMeType !
963966 logout : Boolean !
@@ -1388,6 +1391,16 @@ type ProjectAssetTypeOffsetPaginated {
13881391 totalCount : Int !
13891392}
13901393
1394+ type ProjectAssetsDeleteType {
1395+ count : Int !
1396+ }
1397+
1398+ type ProjectAssetsDeleteTypeMutationResponseType {
1399+ errors : CustomErrorType
1400+ ok : Boolean !
1401+ result : ProjectAssetsDeleteType
1402+ }
1403+
13911404"""Model representing the project."""
13921405input ProjectCreateInput {
13931406 """
@@ -2033,7 +2046,7 @@ type Query {
20332046 organizations (includeAll : Boolean ! = false , filters : OrganizationFilter , order : OrganizationOrder , pagination : OffsetPaginationInput ): OrganizationTypeOffsetPaginated ! @isAuthenticated
20342047 project (id : ID ! ): ProjectType ! @isAuthenticated
20352048 projectAsset (id : ID ! ): ProjectAssetType ! @isAuthenticated
2036- projectAssets (pagination : OffsetPaginationInput , filters : ProjectAssetFilter , order : ProjectAssetOrder ): ProjectAssetTypeOffsetPaginated ! @isAuthenticated
2049+ projectAssets (includeAll : Boolean ! = false , filters : ProjectAssetFilter , order : ProjectAssetOrder , pagination : OffsetPaginationInput ): ProjectAssetTypeOffsetPaginated ! @isAuthenticated
20372050 projectName (params : ProjectNameInput ): String !
20382051 projects (includeAll : Boolean ! = false , filters : ProjectFilter , order : ProjectOrder , pagination : OffsetPaginationInput ): ProjectTypeOffsetPaginated ! @isAuthenticated
20392052 publicOrganization (id : ID ! ): OrganizationType !
@@ -2043,7 +2056,7 @@ type Query {
20432056 tileServers : RasterTileServersType ! @isAuthenticated
20442057 tutorial (id : ID ! ): TutorialType ! @isAuthenticated
20452058 tutorialAsset (id : ID ! ): TutorialAssetType ! @isAuthenticated
2046- tutorialAssets (pagination : OffsetPaginationInput , filters : TutorialAssetFilter , order : TutorialAssetOrder ): TutorialAssetTypeOffsetPaginated ! @isAuthenticated
2059+ tutorialAssets (includeAll : Boolean ! = false , filters : TutorialAssetFilter , order : TutorialAssetOrder , pagination : OffsetPaginationInput ): TutorialAssetTypeOffsetPaginated ! @isAuthenticated
20472060 tutorials (includeAll : Boolean ! = false , filters : TutorialFilter , order : TutorialOrder , pagination : OffsetPaginationInput ): TutorialTypeOffsetPaginated ! @isAuthenticated
20482061 users (filters : UserFilter , order : UserOrder , pagination : OffsetPaginationInput ): UserTypeOffsetPaginated ! @isAuthenticated
20492062}
0 commit comments