0Pricing
Vector Databases: Pinecone, Weaviate & pgvector · Ders

Weaviate GraphQL Sorguları

Anlamsal arama ve veri geri getirme için güçlü GraphQL API'sini kullanarak Weaviate verilerinizi sorgulama konusunda uzmanlaşın.

Weaviate GraphQL Sorguları, CoddyKit'te ücretsiz bir Vector Databases: Pinecone, Weaviate & pgvector dersidir. Bu, 4 dersinin 3. dersidir. Aşağıdan dersin tamamını ücretsiz okuyabilir, sonra tarayıcıda yerleşik kod editörü ve 7/24 yapay zeka koçu ile uygulamalı olarak pratik yapabilirsin. Bu, Vector Databases: Pinecone, Weaviate & pgvector öğrenme yolunun bir parçasıdır ve ilerlemeniz web ve CoddyKit uygulaması arasında senkronize olur. Vector Databases: Pinecone, Weaviate & pgvector kursu toplamda 4 dersten oluşur.

Bu dersin bazı bölümleri henüz çevrilmemiş olup İngilizce olarak gösterilmektedir.

Weaviate's GraphQL Power

Welcome! In this lesson, you'll master querying your Weaviate data. Weaviate uses GraphQL, a powerful query language, for flexible and efficient data retrieval.

GraphQL allows you to request exactly the data you need, nothing more, nothing less. This is especially useful for complex searches, including vector similarity.

Basic Data Retrieval: Get

The foundation of querying in Weaviate is the Get operation. It allows you to fetch data objects from a specific class defined in your schema.

  • Specify the class name (e.g., Article).
  • Select the properties you want to retrieve (e.g., title, content).
  • Weaviate will return all objects of that class with the specified properties.

Get All Objects Example

Let's see a basic Get query in action. This Python code connects to your Weaviate instance and fetches the title and content of all Article objects.

(Ensure you have a Weaviate instance running locally at http://localhost:8080 and an 'Article' class with some data.)

import weaviate

# Connect to your Weaviate instance
# For local: http://localhost:8080
client = weaviate.Client(url="http://localhost:8080")

# Perform a basic Get query for 'Article' objects
try:
    response = client.query.get("Article", ["title", "content"]).do()
    print("--- Retrieved Articles ---")
    for article in response["data"]["Get"]["Article"]:
        print(f"Title: {article['title']}")
except Exception as e:
    print(f"Error during query: {e}")

Filtering Data with 'where'

Often, you don't want all objects, but specific ones. The where filter allows you to add conditions to your queries, narrowing down the results.

  • You can filter by property values (text, number, boolean, date).
  • Use operators like Equal, Like, GreaterThan, etc.
  • Combine multiple conditions with _and or _or clauses.

Filter by Property Value

This example shows how to use the where filter to find articles written by a specific author. We'll look for articles where the author property matches 'Jane Doe'.

import weaviate

client = weaviate.Client(url="http://localhost:8080")

# Define the 'where' filter
where_filter = {
    "path": ["author"],
    "operator": "Equal",
    "valueText": "Jane Doe"
}

# Perform the Get query with the filter
try:
    response = client.query.get("Article", ["title", "author"])
                          .with_where(where_filter).do()
    print("--- Articles by Jane Doe ---")
    for article in response["data"]["Get"]["Article"]:
        print(f"Title: {article['title']}, Author: {article['author']}")
except Exception as e:
    print(f"Error during query: {e}")

Retrieving Vector Embeddings

Weaviate stores a vector embedding for each object, representing its semantic meaning. You can retrieve this vector directly as part of your GraphQL query.

To do this, you use the _additional { vector } clause. This is useful for debugging, understanding your data, or performing custom operations outside Weaviate.

Get Vector Embedding

Here's how to fetch the vector embedding along with other properties. We'll get the title and the vector for the first article found.

import weaviate

client = weaviate.Client(url="http://localhost:8080")

# Query for a title and its vector
try:
    response = client.query.get("Article", ["title"])
                          .with_additional("vector")
                          .with_limit(1).do()
    print("--- Article Title and Vector ---")
    if response["data"]["Get"]["Article"]:
        article = response["data"]["Get"]["Article"][0]
        print(f"Title: {article['title']}")
        print(f"Vector (first 5 elements): {article['_additional']['vector'][:5]}...")
    else:
        print("No articles found.")
except Exception as e:
    print(f"Error during query: {e}")

Powerful Semantic Search

One of Weaviate's core strengths is semantic search. Instead of keyword matching, it finds data objects based on their meaning, even if the exact words aren't present.

This is achieved using the nearText operator. You provide 'concepts' (text) and Weaviate uses them to find the most semantically similar objects in your database.

Find Similar Articles

Let's perform a semantic search to find articles related to 'machine learning applications'. Notice how we use with_near_text and provide our query concepts.

import weaviate

client = weaviate.Client(url="http://localhost:8080")

# Define the concepts for semantic search
concepts = ["machine learning applications"]

# Perform a nearText query
try:
    response = client.query.get("Article", ["title", "content"])
                          .with_near_text({"concepts": concepts})
                          .with_limit(3).do()
    print("--- Articles similar to 'machine learning applications' ---")
    for article in response["data"]["Get"]["Article"]:
        print(f"Title: {article['title']}")
except Exception as e:
    print(f"Error during query: {e}")

GraphQL Query Challenge

You've learned about various ways to query data in Weaviate using GraphQL.

Which of the following GraphQL query operations is specifically used to find data objects that are semantically similar to a given text concept?

Weaviate Queries Recap

Great job! You've mastered the essentials of Weaviate's powerful GraphQL API:

  • The Get operation retrieves data objects and their properties.
  • The where filter allows you to apply precise conditions to your searches.
  • You can explicitly fetch an object's vector embedding using _additional { vector }.
  • The nearText operator powers semantic search, finding items based on meaning.

These tools enable you to efficiently retrieve and explore your vector data in Weaviate!

Sıkça Sorulan Sorular

“Weaviate GraphQL Sorguları” dersi ücretsiz mi?

Evet — “Weaviate GraphQL Sorguları” dersin tüm metni burada web'de ücretsiz olarak okunabilir. Etkileşimli olarak pratik yapmak (yerleşik kod editörü ve 7/24 yapay zeka koçu) ve Vector Databases: Pinecone, Weaviate & pgvector kursunun geri kalanını açmak için CoddyKit PRO'ya yükselt. Vector Databases: Pinecone, Weaviate & pgvector kursu toplamda 4 dersten oluşur.

“Weaviate GraphQL Sorguları” dersinde ne öğreneceğim?

Anlamsal arama ve veri geri getirme için güçlü GraphQL API'sini kullanarak Weaviate verilerinizi sorgulama konusunda uzmanlaşın. Vector Databases: Pinecone, Weaviate & pgvector ile uygulamalı kodu tarayıcıda doğrudan çalıştırarak pratik yaparsın ve 7/24 yapay zeka koçu dersi çalışırken sorularını yanıtlar.

Vector Databases: Pinecone, Weaviate & pgvector öğrenmeye başlamak için deneyim gerekli mi?

Önceden deneyim gerekmez. CoddyKit'te Vector Databases: Pinecone, Weaviate & pgvector, başlangıçtan ileri seviyeye kadar yapılandırıldığı için buradan başlayabilir veya başından başlayıp kendi hızında ilerleme yapabilirsin. Bu, 4 dersinin 3. dersidir.

“Weaviate GraphQL Sorguları” dersi ne kadar sürer?

Çoğu CoddyKit dersi yaklaşık 5–10 dakika sürer. Her biri kısa ve etkileşimli olduğu için sabit ilerleme yaparsın ve web ile uygulama arasında tam olarak bıraktığın yerden devam edebilirsin.

Bu Vector Databases: Pinecone, Weaviate & pgvector dersinde kod yazıp çalıştırabilir miyim?

Evet. Her Vector Databases: Pinecone, Weaviate & pgvector dersi yerleşik bir kod editörü içerir, bu sayede tarayıcıda gerçek kod yazıp çalıştırabilir ve anlık yapay zeka geri bildirimi alırsın — yerel kurulum gerekli değildir.

Bu kursun tüm dersleri

  1. Weaviate Şeması Tanımlama
  2. Veri Nesnelerini İçe Aktarma
  3. Weaviate GraphQL Sorguları
  4. Vektörleştirici Modülleri ve Otomatik Gömme
← Vector Databases: Pinecone, Weaviate & pgvector Sayfasına Dön