1extend type Query { 2 "Query to get the actions" 3 actions( 4 username: String 5 bannerEdgeID: String @hasBannerAccess(field: "bannerEdgeId") 6 clusterEdgeID: String @hasClusterAccess(field: "clusterEdgeId") 7 batchID: String 8 action: String 9 status: String 10 cursor: String 11 count: Int 12 ): Actions 13 @hasRole( 14 roles: [ 15 EDGE_BANNER_VIEWER 16 EDGE_ORG_ADMIN 17 EDGE_BANNER_ADMIN 18 EDGE_BANNER_OPERATOR 19 ] 20 ) 21}