$attributes
Allows selecting the attribute(s) to get from the dataclass (e.g., Company(1)?$attributes=name,city, Company(1)?$attributes=employees.lastname, or Employee?$attributes=employer.name).
説明
If you have relation attributes in a dataclass, use $attributes to define the path of attributes whose values you want to get for the related entity or entities.
$attributes はエンティティ (例: People(1)) またはエンティティセレクション (例: People/$entityset/0AF4679A5C394746BFEB68D2162A19FF) に対して適用できます。
- 
クエリに $attributesが指定されていない場合、または "*" が渡された場合、すべての取得可能な属性が取得されます。 リレートエンティティ 属性は、__KEY(プライマリーキー) とURIプロパティを持つオブジェクトという簡単な形で抽出されます。 リレートエンティティズ 属性は抽出されません。
- 
リレートエンティティ 属性を対象に $attributesが指定された場合:- $attributes=relatedEntity: リレートエンティティは簡単な形で返されます (- __KEY(プライマリーキー) と- URIプロパティを持つ deferred オブジェクト)
- $attributes=relatedEntity.*: リレートエンティティの属性がすべて返されます。
- $attributes=relatedEntity.attributePath1, relatedEntity.attributePath2, ...: リレートエンティティの指定された属性だけが返されます。
 
- 
リレートエンティティズ 属性を対象に $attributesが指定された場合:- $attributes=relatedEntities.*: リレートエンティティズの属性がすべて返されます。
- $attributes=relatedEntities.attributePath1, relatedEntities.attributePath2, ...: リレートエンティティズの指定された属性だけが返されます。
 
- 
If $attributesis specified for storage attributes:- $attributes=attribute1, attribute2, ...: only those attributes of the entities are returned.
 
リレートエンティティズの例
"employees" 1対Nリレーションを持つ Company データクラスに対して次の RESTリクエストをおこなうと:
GET  /rest/Company(1)/?$attributes=employees.lastname
レスポンス:
{
    "__entityModel": "Company",
    "__KEY": "1",  
    "__TIMESTAMP": "2018-04-25T14:41:16.237Z",
    "__STAMP": 2,
    "employees": {
		"__ENTITYSET": "/rest/Company(1)/employees?$expand=employees",
		"__GlobalStamp": 50,
		"__COUNT": 135,
		"__FIRST": 0,
		"__ENTITIES": [
			{
				"__KEY": "1",
				"__TIMESTAMP": "2019-12-01T20:18:26.046Z",
				"__STAMP": 5,
				"lastname": "ESSEAL"
			},
			{
				"__KEY": "2",
				"__TIMESTAMP": "2019-12-04T10:58:42.542Z",
				"__STAMP": 6,
				"lastname": "JONES"
			},
			...
    }
}
employees の属性をすべて取得するには:
GET  /rest/Company(1)/?$attributes=employees.*
また、employees の lastname属性と jobname属性を取得するには:
GET  /rest/Company(1)/?$attributes=employees.lastname,employees.jobname
リレートエンティティの例
"employer" N対1リレーションを持つ Employee データクラスに対して次の RESTリクエストをおこなうと:
GET  /rest/Employee(1)?$attributes=employer.name
レスポンス:
{
	"__entityModel": "Employee",
	"__KEY": "1",
	"__TIMESTAMP": "2019-12-01T20:18:26.046Z",
	"__STAMP": 5,
	"employer": {
		"__KEY": "1",
		"__TIMESTAMP": "2018-04-25T14:41:16.237Z",
		"__STAMP": 0,
		"name": "Adobe"
	}
}
employer の属性をすべて取得するには:
GET  /rest/Employee(1)?$attributes=employer.*
また、employer の全employees の lastname属性を取得するには:
GET  /rest/Employee(1)?$attributes=employer.employees.lastname