Skip to content

Commit 8816ec2

Browse files
committed
Added hyperlinks for functions
1 parent e7ffb68 commit 8816ec2

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

README.md

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -50,23 +50,23 @@ You'll call the GQuery class via `new GQuery.GQuery()` (The first GQuery is your
5050

5151
This chart shows a quick overview of the different functions GQuery offers.
5252

53-
| Function | Description | .from() | .select() | .where() | .join() |
54-
| :------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | :-----: | :-------: | :------: | :-----: |
55-
| GET | Retrieve row(s) in a single sheet. | Y | Y | Y | Y |
56-
| GET MANY | Retrieve rows from multiple sheets. | N | N | N | N |
57-
| QUERY | Retrieve data from a single sheet via the Google's[Query Visualization Language](https://developers.google.com/chart/interactive/docs/querylanguage#case-sensitivityhttps:/). | Y | Y | Y | Y |
58-
| UPDATE | Update rows in a single sheet. | Y | Y | Y | Y |
59-
| APPEND | Add rows to a single sheet. | Y | Y | Y | Y |
60-
| DELETE | Delete rows from a single sheet. | Y | Y | Y | Y |
53+
| Function | Description | .from() | .select() | .where() | .join() |
54+
| :-------------------------- | :----------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | :-----: | :-------: | :------: | :-----: |
55+
| [GET](#using-get) | Retrieve row(s) in a single sheet. | Y | Y | Y | Y |
56+
| [GET MANY](#using-get-many) | Retrieve rows from multiple sheets. | N | N | N | N |
57+
| [QUERY](#using-query) | Retrieve data from a single sheet via the Google's [Query Visualization Language](https://developers.google.com/chart/interactive/docs/querylanguage#case-sensitivityhttps:/). | Y | Y | Y | Y |
58+
| [UPDATE](#using-update) | Update rows in a single sheet. | Y | Y | Y | Y |
59+
| [APPEND](#using-append) | Add rows to a single sheet. | Y | Y | Y | Y |
60+
| [DELETE](#using-delete) | Delete rows from a single sheet. | Y | Y | Y | Y |
6161

6262
Modifier Functions
6363

64-
| Function | Description |
65-
| -------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------- |
66-
| FROM | Used to select the target sheet for all following queries. Returns a GQueryTable. |
67-
| SELECT | Used to select specific columns to return. Returns a GQueryTableFactory. |
68-
| WHERE | Used to filter rows based on a condition. Returns a GQueryTableFactory. |
69-
| JOIN | Used to join with another sheet based on the sheet's column, a join column, and allows a selection of different columns to return. Returns a GQueryTableFactory. |
64+
| Function | Description |
65+
| -------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------- |
66+
| FROM | Used to select the target sheet for all following queries. Returns a GQueryTable. |
67+
| SELECT | Used to select specific columns to return. Returns a GQueryTableFactory. |
68+
| WHERE | Used to filter rows based on a condition. Returns a GQueryTableFactory. |
69+
| [JOIN](#using-joins) | Used to join with another sheet based on the sheet's column, a join column, and allows a selection of different columns to return. Returns a GQueryTableFactory. |
7070

7171
#### Using GET
7272

0 commit comments

Comments
 (0)