-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add delete class and delete triple issue templates, part of snikproje…
- Loading branch information
1 parent
76c9c35
commit 70efbe9
Showing
2 changed files
with
44 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
name: Delete Class | ||
description: Permanently delete a class | ||
labels: ["deleteclass"] | ||
assignees: | ||
- KonradHoeffner | ||
body: | ||
- type: input | ||
id: class | ||
attributes: | ||
label: Class | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: sparql | ||
attributes: | ||
label: SPARQL query |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
name: Delete Triple | ||
description: Permanently delete a triple (edge) | ||
labels: ["deletetriple"] | ||
assignees: | ||
- KonradHoeffner | ||
body: | ||
- type: input | ||
id: subject | ||
attributes: | ||
label: Subject Class | ||
validations: | ||
required: true | ||
- type: input | ||
id: predicate | ||
attributes: | ||
label: Predicate | ||
validations: | ||
required: true | ||
- type: input | ||
id: object | ||
attributes: | ||
label: Object Class | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: sparql | ||
attributes: | ||
label: SPARQL query |