Options
All
  • Public
  • Public/Protected
  • All
Menu

Fuzzy search for groups.

example

Use a bare-bones client and the command you need to make an API call.

import { GroupServiceClient, SearchGroupsCommand } from "@rivet-gg/group"; // ES Modules import
// const { GroupServiceClient, SearchGroupsCommand } = require("@rivet-gg/group"); // CommonJS import
const client = new GroupServiceClient(config);
const command = new SearchGroupsCommand(input);
const response = await client.send(command);
see

SearchGroupsCommandInput for command's input shape.

see

SearchGroupsCommandOutput for command's response shape.

see

config for GroupServiceClient's config shape.

Hierarchy

Implements

Index

Constructors

Properties

Constructors

constructor

Properties

Readonly input

input: SearchGroupsCommandInput

Readonly middlewareStack

middlewareStack: IMiddlewareStack<SearchGroupsCommandInput, SearchGroupsCommandOutput>