Skip to content
This repository was archived by the owner on Sep 30, 2024. It is now read-only.

Commit df4fb88

Browse files
Make symbol name and provenance comparison objects instead of primitives
1 parent e5b9e38 commit df4fb88

File tree

1 file changed

+11
-3
lines changed

1 file changed

+11
-3
lines changed

cmd/frontend/graphqlbackend/codeintel.codenav.graphql

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -275,12 +275,20 @@ type GitBlobLSIFData implements TreeEntryLSIFData {
275275
snapshot(indexID: ID!): [SnapshotData!]
276276
}
277277

278+
input LookupSCIPSymbol {
279+
name: SymbolNameComparator!
280+
provenance: ProvenanceComparator!
281+
}
282+
278283
"""
279284
In the future, we may want to extend this to allow passing in a suffix or a "symbol pattern".
280285
"""
281-
input LookupSCIPSymbol {
282-
name: String!
283-
provenance: Provenance!
286+
input SymbolNameComparator {
287+
eq: String
288+
}
289+
290+
input ProvenanceComparator {
291+
eq: Provenance
284292
}
285293

286294
type SCIPSymbol {

0 commit comments

Comments
 (0)