@@ -890,7 +890,6 @@ input CreateWorkspaceInput {
890
890
description : String
891
891
loadSampleData : Boolean
892
892
name : String !
893
- organizationId : UUID
894
893
slug : String
895
894
}
896
895
@@ -2452,26 +2451,14 @@ type Organization {
2452
2451
"""The unique identifier of the organization."""
2453
2452
id : UUID !
2454
2453
2455
- """The members of the organization."""
2456
- members (page : Int , perPage : Int ): OrganizationMembershipPage !
2457
-
2458
2454
"""The name of the organization."""
2459
2455
name : String !
2460
2456
2461
- """The permissions the current user has in the organization."""
2462
- permissions : OrganizationPermissions !
2463
-
2464
- """The short name of the organization."""
2465
- shortName : String
2466
-
2467
2457
"""The type of the organization."""
2468
2458
type : String !
2469
2459
2470
2460
"""The URL of the organization."""
2471
2461
url : String !
2472
-
2473
- """The workspaces associated with the organization."""
2474
- workspaces (page : Int , perPage : Int ): WorkspacePage !
2475
2462
}
2476
2463
2477
2464
"""
@@ -2494,36 +2481,6 @@ input OrganizationInput {
2494
2481
url : String
2495
2482
}
2496
2483
2497
- """Represents a membership in an organization."""
2498
- type OrganizationMembership {
2499
- createdAt : DateTime !
2500
- id : UUID !
2501
- organization : Organization !
2502
- role : OrganizationMembershipRole !
2503
- updatedAt : DateTime
2504
- user : User !
2505
- }
2506
-
2507
- """Represents a page of organization memberships."""
2508
- type OrganizationMembershipPage {
2509
- items : [WorkspaceMembership ! ]!
2510
- pageNumber : Int !
2511
- totalItems : Int !
2512
- totalPages : Int !
2513
- }
2514
-
2515
- """Represents the role of a organization membership."""
2516
- enum OrganizationMembershipRole {
2517
- ADMIN
2518
- MEMBER
2519
- OWNER
2520
- }
2521
-
2522
- type OrganizationPermissions {
2523
- archiveWorkspace : Boolean !
2524
- createWorkspace : Boolean !
2525
- }
2526
-
2527
2484
"""Represents an input parameter of a pipeline."""
2528
2485
input ParameterInput {
2529
2486
choices : [Generic ! ]
@@ -3063,7 +3020,6 @@ type Query {
3063
3020
me : Me !
3064
3021
metadataAttributes (targetId : OpaqueID ! ): [MetadataAttribute ]!
3065
3022
notebooksUrl : URL !
3066
- organization (id : UUID ! ): Organization
3067
3023
3068
3024
"""Retrieves a list of organizations."""
3069
3025
organizations : [Organization ! ]!
@@ -3086,11 +3042,11 @@ type Query {
3086
3042
3087
3043
"""Retrieves a page of pipelines ordered by relevant name."""
3088
3044
pipelines (name : String , page : Int , perPage : Int , search : String , workspaceSlug : String ): PipelinesPage !
3089
- searchDatabaseTables (organizationId : UUID , page : Int = 1 , perPage : Int = 15 , query : String ! , workspaceSlugs : [String ]): DatabaseTableResultPage !
3090
- searchDatasets (organizationId : UUID , page : Int = 1 , perPage : Int = 15 , query : String ! , workspaceSlugs : [String ]): DatasetResultPage !
3091
- searchFiles (organizationId : UUID , page : Int = 1 , perPage : Int = 15 , query : String ! , workspaceSlugs : [String ]): FileResultPage !
3092
- searchPipelineTemplates (organizationId : UUID , page : Int = 1 , perPage : Int = 15 , query : String ! , workspaceSlugs : [String ]): PipelineTemplateResultPage !
3093
- searchPipelines (organizationId : UUID , page : Int = 1 , perPage : Int = 15 , query : String ! , workspaceSlugs : [String ]): PipelineResultPage !
3045
+ searchDatabaseTables (page : Int = 1 , perPage : Int = 15 , query : String ! , workspaceSlugs : [String ]! ): DatabaseTableResultPage !
3046
+ searchDatasets (page : Int = 1 , perPage : Int = 15 , query : String ! , workspaceSlugs : [String ]! ): DatasetResultPage !
3047
+ searchFiles (page : Int = 1 , perPage : Int = 15 , query : String ! , workspaceSlugs : [String ]! ): FileResultPage !
3048
+ searchPipelineTemplates (page : Int = 1 , perPage : Int = 15 , query : String ! , workspaceSlugs : [String ]! ): PipelineTemplateResultPage !
3049
+ searchPipelines (page : Int = 1 , perPage : Int = 15 , query : String ! , workspaceSlugs : [String ]! ): PipelineResultPage !
3094
3050
team (id : UUID ! ): Team
3095
3051
teams (page : Int , perPage : Int , term : String ): TeamPage !
3096
3052
@@ -3104,7 +3060,7 @@ type Query {
3104
3060
webapp (id : UUID ! ): Webapp
3105
3061
webapps (favorite : Boolean , page : Int , perPage : Int , workspaceSlug : String ): WebappsPage !
3106
3062
workspace (slug : String ! ): Workspace
3107
- workspaces (organizationId : UUID , page : Int , perPage : Int , query : String ): WorkspacePage !
3063
+ workspaces (page : Int , perPage : Int , query : String ): WorkspacePage !
3108
3064
}
3109
3065
3110
3066
"""
@@ -4147,7 +4103,6 @@ type Workspace {
4147
4103
invitations (includeAccepted : Boolean , page : Int , perPage : Int ): WorkspaceInvitationPage !
4148
4104
members (page : Int , perPage : Int ): WorkspaceMembershipPage !
4149
4105
name : String !
4150
- organization : Organization
4151
4106
permissions : WorkspacePermissions !
4152
4107
slug : String !
4153
4108
updatedAt : DateTime
0 commit comments