You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+14-2Lines changed: 14 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -7,7 +7,7 @@ It allows to load data from a SPARQL endpoint using SELECT queries.
7
7
## Getting started
8
8
9
9
1. Open the [link](https://datastudio.google.com/datasources/create?connectorId=AKfycbzDHEBN9qHXPni4xO4P2cIZtyQ3rnYmzkCnVsnh9oEJrnhGe4MntBF-t1zAu2Lm-Vjc) to create a new Data Source.
10
-
1. Once authorization has successfully completed, you're ready to configure the parameters. You should be see the form:
10
+
1. Once authorization has successfully completed, you're ready to configure the parameters. You should see the form:
11
11
12
12

13
13
@@ -36,7 +36,7 @@ It allows to load data from a SPARQL endpoint using SELECT queries.
36
36
* `dateRange.endDate` - format `YYYY-MM-DD`, e.g. 2018-10-01,
37
37
* `dateRange.numDays` - it's a positive integer value.
38
38
39
-
If you don't use `dateRange.startDate` and `dateRange.endDate`, then you won't be able to use **Date range** filter.
39
+
If you don't use `dateRange.startDate` or `dateRange.endDate`, then **Date range** filter won't be able to control the date range.
40
40
41
41
1. Enter the schema of projections, e.g.
42
42
@@ -60,6 +60,18 @@ Google Data Studio uses it's own formats for some of the data types. Therefore t
60
60
* `xsd:dateTime` is converted to `YYYYMMDDHH`,
61
61
* `xsd:duration` is converted to an integer corresponding to the number of seconds.
62
62
63
+
## Default values
64
+
65
+
The connector may apply default values in query results which don't a value for a requested field. The default values:
66
+
67
+
Datatype | Default value
68
+
-----------|--------------
69
+
`NUMBER` | `0`
70
+
`BOOLEAN` | `false`
71
+
`STRING` | `""`
72
+
73
+
If you don't like these defaults, then write your query in a way when it can't have missing/empty values, especially in case of `GROUP BY`.
0 commit comments