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
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -34,7 +34,7 @@ or open the folder in VSCode and do the following:
34
34
## How to Work With it
35
35
36
36
This template creates /crud REST web-application on IRIS which implements 4 types of communication: GET, POST, PUT and DELETE aka CRUD operations.
37
-
These interface works with a sample persistent class Sample.Person.
37
+
These interface works with a sample persistent class dc.Sample.Person.
38
38
39
39
Open http://localhost:52773/swagger-ui/index.html to test the REST API
40
40
@@ -43,9 +43,9 @@ Open http://localhost:52773/swagger-ui/index.html to test the REST API
43
43
To test GET you need to have some data. You can create it with POST request (see below), or you can create some fake testing data. to do that open IRIS terminal or web terminal on /localhost:52773/terminal/ and call:
44
44
45
45
```
46
-
USER>do ##class(Sample.Person).AddTestData(10)
46
+
USER>do ##class(dc.Sample.Person).AddTestData(10)
47
47
```
48
-
This will create 10 random records in Sample.Person class.
48
+
This will create 10 random records in dc.Sample.Person class.
49
49
50
50
51
51
You can get swagger Open API 2.0 documentation on:
@@ -84,7 +84,7 @@ Adjust the authorisation if needed - it is basic for container with default logi
84
84
85
85
and send the POST request to localhost:52773/crud/persons/
86
86
87
-
This will create a record in Sample.Person class of IRIS.
87
+
This will create a record in dc.Sample.Person class of IRIS.
0 commit comments