File tree Expand file tree Collapse file tree 2 files changed +0
-3
lines changed
packages/network-subgraphs Expand file tree Collapse file tree 2 files changed +0
-3
lines changed Original file line number Diff line number Diff line change @@ -35,8 +35,6 @@ type StreamPermission @entity {
35
35
type Stream @entity {
36
36
"stream ID = 'creator address'/'path' where path can be any string"
37
37
id : ID !
38
- "This field has the same value as the ID field. It enables us to perform substring queries on the id field using the idAsString_contains where clause"
39
- idAsString : String ! @index
40
38
"Stream metadata JSON"
41
39
metadata : String !
42
40
"Permissions that each Ethereum address owns to this stream"
Original file line number Diff line number Diff line change @@ -24,7 +24,6 @@ export function handleStreamCreation(event: StreamCreated): void {
24
24
return
25
25
}
26
26
let stream = new Stream ( event . params . id )
27
- stream . idAsString = event . params . id ,
28
27
stream . metadata = event . params . metadata
29
28
stream . createdAt = event . block . timestamp
30
29
stream . updatedAt = event . block . timestamp
You can’t perform that action at this time.
0 commit comments