Skip to content
This repository has been archived by the owner on Apr 14, 2023. It is now read-only.

Added commas to standalone example #1287

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions docs/source/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -139,10 +139,10 @@ const link = new HttpLink({ uri });

const operation = {
query: gql`query { hello }`,
variables: {} //optional
operationName: {} //optional
context: {} //optional
extensions: {} //optional
variables: {}, //optional
operationName: {}, //optional
context: {}, //optional
extensions: {}, //optional
};

// execute returns an Observable so it can be subscribed to
Expand Down