Auth0 Node.js SDK - v6.4.0
    Preparing search index...

    Interface ListSynchronizedGroupsRequestParameters

    {
    * from: "from",
    * take: 1,
    * q: "q"
    * }
    interface ListSynchronizedGroupsRequestParameters {
        from?: string | null;
        take?: number | null;
        q?: string | null;
    }
    Index
    from?: string | null

    Optional Id from which to start selection.

    take?: number | null

    Number of results per page. Defaults to 50.

    q?: string | null

    Query in Lucene query string syntax. Only prefix search on "name" or "email" fields are allowed, with a single wildcard suffix. Operators, modifiers, and groupings are not allowed. Terms are treated as case-insensitive. Example query: "name:engineering*".