> ## Documentation Index
> Fetch the complete documentation index at: https://doc.lucidworks.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Querying

export const LwTemplate = ({title = "Key questions to get you started", icon = "sparkles", cta = "Powered by Agent Studio", linkHref = "https://lucidworks.com/demo/?utm_source=docs&utm_medium=referral&utm_campaign=docs_cta_ai"}) => {
  const [isLoaded, setIsLoaded] = useState(false);
  useEffect(() => {
    const timer = setTimeout(() => {
      setIsLoaded(true);
    }, 500);
    return () => clearTimeout(timer);
  }, []);
  return <div className="lw-template-container">
      <Card title={title} icon={icon}>
        {isLoaded && <span dangerouslySetInnerHTML={{
    __html: `<lw-template id="a029c1a9-28be-427e-b0e1-5d918920246a"></lw-template
            >`
  }} />}
        <Link href={linkHref} className="agent-studio-link text-left text-gray-600 gap-2 dark:text-gray-400 text-sm font-medium flex flex-row items-center hover:text-primary dark:hover:text-primary-light group-hover:text-primary group-hover:dark:text-primary-light">Powered by Lucidworks Agent Studio</Link>
      </Card>
    </div>;
};

[localhost link]: http://localhost:3000/docs/4/fusion-server/concepts/querying/overview

[mintlify link]: https://doc.lucidworks.com/docs/4/fusion-server/concepts/querying/overview

[old doc.lw link]: https://doc.lucidworks.com/fusion/5.9/168

<LwTemplate />

## Querying

### Query Pipelines

Query pipelines process search requests before sending them to Fusion Server’s Solr core. A query pipeline can perform transformations on a search request in order to customize the search results that Solr returns. See [Query Pipeline Configuration](/docs/4/fusion-server/concepts/querying/pipelines/query-pipelines).

### Search Applications

Search applications are the front-end interfaces that you build on top of Fusion. Your application makes calls to Fusion’s REST API in order to retrieve search results or perform other actions. Certain features, like autocomplete and synonyms, require some configuration on the Fusion back end. See [Application Development](/docs/4/fusion-server/concepts/querying/apps/search-applications-overview).

### Query Language

Whenever you are getting data out of Fusion Server, you may find it handy to consult the [Query Language Cheat Sheet](/docs/4/fusion-server/reference/query-ops/query-language-cheat-sheet).

If you are using Fusion AI with Fusion Server, you can generate and retrieve additional data for analysis or to enhance the end-user experience. For example, Fusion AI can produce sophisticated recommendations to guide end users to the best available results, including results that do not exactly match the original user-submitted query. It can also perform machine learning functions that automatically improve search results based on the past activities of users. See the [Fusion AI documentation](/docs/4/fusion-ai/overview).
