Skip to content

Commit

Permalink
Fix Query Options README example (#179)
Browse files Browse the repository at this point in the history
  • Loading branch information
ptpaterson authored Jul 12, 2023
1 parent dfe61d6 commit c71a565
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -237,13 +237,13 @@ const options: QueryOptions = {
long_type: "number",
linearized: false,
max_contention_retries: 5,
query_tags: { name: "readme query" },
query_tags: { name: "readme_query" },
query_timeout_ms: 60_000,
traceparent: "00-750efa5fb6a131eb2cf4db39f28366cb-000000000000000b-00",
typecheck: true,
};

const response = await client.query(fql`"Hello, ${name}!"`, options);
const response = await client.query(fql`"Hello, #{name}!"`, options);

client.close();
```
Expand Down

0 comments on commit c71a565

Please sign in to comment.