SpiderProjectServiceGetByKeywordSplit Method
GetByKeywordSplit splits the search space into smaller chunks and then calls GetByKeyword on each chunk.
Namespace: spider.ServicesAssembly: spider (in spider.exe) Version: 1.0.0+fc7a1b35c0f8728ecbe7255d9fa5b4d3324ce3c6
public Task<List<ProjectDto>> GetByKeywordSplit(
string name,
int amount,
string? startCursor
)
- name String
- keyword to search by
- amount Int32
- Amount of repositories to return
- startCursor String
- The cursor to start searching from. If startCursor is null it starts searching from
the start
TaskListProjectDtoA list of repositories including contributors in the form of List<ProjectDto>
ISpiderProjectServiceGetByKeywordSplit(String, Int32, String)