ISpiderProjectServiceGetByTopic Method

GetByTopic takes the name of a topic, an amount and a start cursor and uses those to get the first amount of repositories with the topic, after the start cursor. The result includes contributors.

Definition

Namespace: spider.Services
Assembly: spider (in spider.exe) Version: 1.0.0+fc7a1b35c0f8728ecbe7255d9fa5b4d3324ce3c6
C#
Task<List<ProjectDto>> GetByTopic(
	string topic,
	int amount,
	string? startCursor
)

Parameters

topic  String
topic to search for
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

Return Value

TaskListProjectDto

Exceptions

HttpRequestExceptionThrows on NullReferenceException or JsonException

See Also