Skip to content

Documentation / @ember-data/request / index / RequestInfo

Interface: RequestInfo<RT>

Defined in: warp-drive-packages/core/declarations/types/request.d.ts:286

Extends JavaScript's native fetch NativeRequestInit | RequestInit with additional properties specific to the RequestManager | RequestManager's capabilities.

This interface is used to define the shape of a request that can be made via either the RequestManager.request or Store.request methods.

Since

4.12

Extends

  • NativeRequestInit

Type Parameters

RT

RT = unknown

Properties

___(unique) Symbol(EnableHydration)?

ts
optional ___(unique) Symbol(EnableHydration): boolean;

Defined in: warp-drive-packages/core/declarations/types/request.d.ts:322


___(unique) Symbol(RequestSignature)?

ts
optional ___(unique) Symbol(RequestSignature): RT;

Defined in: warp-drive-packages/core/declarations/types/request.d.ts:321


body?

ts
optional body: null | BodyInit;

Defined in: warp-drive-packages/core/declarations/types/request.d.ts:257

Any body that you want to add to your request. Note that a GET or HEAD request may not have a body.

Inherited from

ts
NativeRequestInit.body

cache?

ts
optional cache: RequestCache;

Defined in: warp-drive-packages/core/declarations/types/request.d.ts:215

Returns the cache mode associated with request, which is a string indicating how the request will interact with the browser's cache when fetching.

Inherited from

ts
NativeRequestInit.cache

cacheOptions?

ts
optional cacheOptions: CacheOptions;

Defined in: warp-drive-packages/core/declarations/types/request.d.ts:295

See

CacheOptions


controller?

ts
optional controller: AbortController;

Defined in: warp-drive-packages/core/declarations/types/request.d.ts:291

If provided, used instead of the AbortController auto-configured for each request by the RequestManager


credentials?

ts
optional credentials: RequestCredentials;

Defined in: warp-drive-packages/core/declarations/types/request.d.ts:218

Returns the credentials mode associated with request, which is a string indicating whether credentials will be sent with the request always, never, or only when sent to a same-origin URL.

Inherited from

ts
NativeRequestInit.credentials

data?

ts
optional data: Record<string, unknown>;

Defined in: warp-drive-packages/core/declarations/types/request.d.ts:314

data that a handler should convert into the query (GET) or body (POST).

Note: It is recommended that builders set query params and body directly in most scenarios.


destination?

ts
optional destination: RequestDestination;

Defined in: warp-drive-packages/core/declarations/types/request.d.ts:221

Returns the kind of resource requested by request, e.g., "document" or "script".

Inherited from

ts
NativeRequestInit.destination

disableTestWaiter?

ts
optional disableTestWaiter: boolean;

Defined in: warp-drive-packages/core/declarations/types/request.d.ts:305


duplex?

ts
optional duplex: "half";

Defined in: warp-drive-packages/core/declarations/types/request.d.ts:265

When sending a ReadableStream as the body of a request, 'half' must be specified.

Half Duplex Further Reading

Inherited from

ts
NativeRequestInit.duplex

headers?

ts
optional headers: Headers;

Defined in: warp-drive-packages/core/declarations/types/request.d.ts:224

Returns a Headers object consisting of the headers associated with request. Note that headers added in the network layer by the user agent will not be accounted for in this object, e.g., the "Host" header.

Inherited from

ts
NativeRequestInit.headers

integrity?

ts
optional integrity: string;

Defined in: warp-drive-packages/core/declarations/types/request.d.ts:227

Returns request's subresource integrity metadata, which is a cryptographic hash of the resource being fetched. Its value consists of multiple hashes separated by whitespace. [SRI]

Inherited from

ts
NativeRequestInit.integrity

keepalive?

ts
optional keepalive: boolean;

Defined in: warp-drive-packages/core/declarations/types/request.d.ts:230

Returns a boolean indicating whether or not request can outlive the global in which it was created.

Inherited from

ts
NativeRequestInit.keepalive

method?

ts
optional method: HTTPMethod;

Defined in: warp-drive-packages/core/declarations/types/request.d.ts:233

Returns request's HTTP method, which is "GET" by default.

Inherited from

ts
NativeRequestInit.method

mode?

ts
optional mode: RequestMode;

Defined in: warp-drive-packages/core/declarations/types/request.d.ts:239

Returns the mode associated with request, which is a string indicating whether the request will use CORS, or will be restricted to same-origin URLs.

no-cors is not allowed for streaming request bodies.

Inherited from

ts
NativeRequestInit.mode

op?

ts
optional op: string;

Defined in: warp-drive-packages/core/declarations/types/request.d.ts:297


options?

ts
optional options: Record<string, unknown>;

Defined in: warp-drive-packages/core/declarations/types/request.d.ts:320

options specifically intended for Handlers to utilize to process the request


records?

ts
optional records: ResourceKey[];

Defined in: warp-drive-packages/core/declarations/types/request.d.ts:304

The ResourceKeys of the primary resources involved in the request (if any). This may be used by handlers to perform transactional operations on the store.


redirect?

ts
optional redirect: RequestRedirect;

Defined in: warp-drive-packages/core/declarations/types/request.d.ts:242

Returns the redirect mode associated with request, which is a string indicating how redirects for the request will be handled during fetching. A request will follow redirects by default.

Inherited from

ts
NativeRequestInit.redirect

referrer?

ts
optional referrer: string;

Defined in: warp-drive-packages/core/declarations/types/request.d.ts:245

Returns the referrer of request. Its value can be a same-origin URL if explicitly set in init, the empty string to indicate no referrer, and "about:client" when defaulting to the global's default. This is used during fetching to determine the value of the Referer header of the request being made.

Inherited from

ts
NativeRequestInit.referrer

referrerPolicy?

ts
optional referrerPolicy: ReferrerPolicy;

Defined in: warp-drive-packages/core/declarations/types/request.d.ts:248

Returns the referrer policy associated with request. This is used during fetching to compute the value of the request's referrer.

Inherited from

ts
NativeRequestInit.referrerPolicy

signal?

ts
optional signal: AbortSignal;

Defined in: warp-drive-packages/core/declarations/types/request.d.ts:251

Returns the signal associated with request, which is an AbortSignal object indicating whether or not request has been aborted, and its abort event handler.

Inherited from

ts
NativeRequestInit.signal

store?

ts
optional store: default;

Defined in: warp-drive-packages/core/declarations/types/request.d.ts:296


url?

ts
optional url: string;

Defined in: warp-drive-packages/core/declarations/types/request.d.ts:254

Returns the URL of request as a string.

Inherited from

ts
NativeRequestInit.url

Released under the MIT License.