File tree Expand file tree Collapse file tree 1 file changed +17
-1
lines changed Expand file tree Collapse file tree 1 file changed +17
-1
lines changed Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ Make sure you have [git](https://git-scm.com/book/en/v2/Getting-Started-Installi
9
9
Clone/git pull the repo into any local directory
10
10
11
11
```
12
- $ git clone https://github.com/intersystems-community/PythonGateway-Template .git
12
+ $ git clone https://github.com/intersystems-community/posts-and-tags .git
13
13
```
14
14
15
15
Open the terminal in this directory and run:
@@ -74,6 +74,22 @@ http://localhost:52773/csp/user/index.html
74
74
75
75
Where ` 52773 ` is a container web port.
76
76
77
+ ### Community Posts Dataset
78
+
79
+ #### SQL Query Examples
80
+ Get Posts
81
+ ``` sql
82
+ SELECT * FROM Community .Post
83
+ ```
84
+ Get Tags
85
+ ``` sql
86
+ SELECT * FROM Community .Tag
87
+ ```
88
+ Get Posts by Tag ** REST API**
89
+ ``` sql
90
+ SELECT * FROM Community .Post WHERE $LISTFIND($LISTFROMSTRING(Tags, ' ,' ), ' REST API' ) != 0
91
+ ```
92
+
77
93
## DevOps
78
94
79
95
### Dockerfile
You can’t perform that action at this time.
0 commit comments