Skip to content

ItemService does not support filtering / limiting / offsets #13

@keith-chargeover

Description

@keith-chargeover

Found the issue in ItemService.cs

This call is dropping all the parameters except for item.

public IResponse<ItemDetails> QueryingForItems(string[] queries = null, string[] orders = null, int offset = 0, int limit = 10)

{
return Query<ItemDetails>("item");
}

This need to be :

public IResponse<ItemDetails> QueryingForItems(string[] queries = null, string[] orders = null, int offset = 0, int limit = 10)

{
return Query<ItemDetails>("item",queries,orders,offset,limit);
}

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions