Table of Contents

Interface Inheritdoc.Issue9736.IJsonApiOptions

Namespace
BuildFromProject
Assembly
BuildFromProject.dll
public interface Inheritdoc.Issue9736.IJsonApiOptions

Properties

Whether to use relative links for all resources. false by default.

bool UseRelativeLinks { get; }

Property Value

bool

Examples

options.UseRelativeLinks = true;
{
  "type": "articles",
  "id": "4309",
  "relationships": {
     "author": {
       "links": {
         "self": "/api/shopping/articles/4309/relationships/author",
         "related": "/api/shopping/articles/4309/author"
       }
     }
  }
}