# Selecting fields

Official Documentation (opens new window)

# Only select a specific field

use SportmonksFootballApi;

SportmonksFootballApi::fixture()
	->setSelect('name')
	->byId(18535517);

# Select a specific field on an include

use SportmonksFootballApi;

SportmonksFootballApi::fixture()
	->setInclude('lineups.player;lineups.player.country')
	->byId(18535517);