Interface Inheritdoc.Issue9736.IJsonApiOptions
- Namespace
 - BuildFromProject
 
- Assembly
 - BuildFromProject.dll
 
public interface Inheritdoc.Issue9736.IJsonApiOptionsProperties
UseRelativeLinks
Whether to use relative links for all resources. false by default.
bool UseRelativeLinks { get; }Property Value
Examples
options.UseRelativeLinks = true;
{
  "type": "articles",
  "id": "4309",
  "relationships": {
     "author": {
       "links": {
         "self": "/api/shopping/articles/4309/relationships/author",
         "related": "/api/shopping/articles/4309/author"
       }
     }
  }
}