freeboard
    Preparing search index...
    default: "\n enum BrokerProfileProtocol {\n MQTT\n }\n\n type BrokerProfile {\n _id: ID!\n name: String!\n description: String\n protocol: BrokerProfileProtocol!\n brokerUrl: String!\n tls: Object\n credentialProfileId: String\n allowPublicUse: Boolean!\n topicAllowlist: [String!]!\n createdAt: String\n updatedAt: String\n }\n\n input BrokerProfileCreateInput {\n name: String!\n description: String\n protocol: BrokerProfileProtocol\n brokerUrl: String!\n tls: Object\n credentialProfileId: ID\n allowPublicUse: Boolean\n topicAllowlist: [String!]\n }\n\n input BrokerProfileUpdateInput {\n name: String\n description: String\n protocol: BrokerProfileProtocol\n brokerUrl: String\n tls: Object\n credentialProfileId: ID\n allowPublicUse: Boolean\n topicAllowlist: [String!]\n }\n\n extend type Query {\n brokerProfiles(protocol: BrokerProfileProtocol): [BrokerProfile!]!\n }\n\n extend type Mutation {\n adminCreateBrokerProfile(input: BrokerProfileCreateInput!): BrokerProfile!\n adminUpdateBrokerProfile(_id: ID!, input: BrokerProfileUpdateInput!): BrokerProfile!\n adminDeleteBrokerProfile(_id: ID!): BrokerProfile!\n }\n"