cremich / promptz

Prompt Hub for Amazon Q Developer
MIT No Attribution
7 stars 1 forks source link

Search for Prompts #6

Closed cremich closed 3 weeks ago

cremich commented 4 weeks ago

Provide a basic search functionality to search for prompts. Relevant search fields could be

Basic search functionality can be provided with compound Appsync filters. Here is an example

query MyQuery {
  listPrompts(
    filter: {or: [{name: {contains: "test"}}, {name: {contains: "Test"}}]}
  ) {
    items {
      name
      description
      category
    }
  }
}