1extend type Query { 2 """ 3 GetCABundle gets the bundle including active and staged certs 4 """ 5 getCABundle( 6 """ 7 banner ID associated with the CA Bundle 8 """ 9 bannerEdgeID: String! @hasBannerAccess(field: "bannerEdgeID") 10 ): CaBundle! 11 @hasRole( 12 roles: [ 13 EDGE_BANNER_VIEWER 14 EDGE_ORG_ADMIN 15 EDGE_BANNER_ADMIN 16 EDGE_BANNER_OPERATOR 17 ] 18 ) 19}