# Language Support Missing in 22.0 but works in 21.12

**URL:** https://discuss.dgraph.io/t/language-support-missing-in-22-0-but-works-in-21-12/18322
**Category:** Dgraph
**Created:** [February 23, 2023, 12:59pm UTC](https://discuss.dgraph.io/t/language-support-missing-in-22-0-but-works-in-21-12/18322 "2023-02-23T12:59:14Z")
**Posts on this page:** 4
**Page:** 1

<div class="post-metadata">

### Author: ![Peter\_Liu](https://yyz1.discourse-cdn.com/flex007/user_avatar/discuss.dgraph.io/peter_liu/32/10307_2.png) [@Peter\_Liu](https://discuss.dgraph.io/u/Peter_Liu)
#### Post date: [February 23, 2023, 12:59pm UTC](https://discuss.dgraph.io/t/language-support-missing-in-22-0-but-works-in-21-12/18322/1 "2023-02-23T12:59:15Z")

</div>

## What I want to do

Use the language support as documented here:

> **[Overview - Dgraph](https://docs.hypermode.com/dgraph/overview)**

## What I did

I tried set the schema listed in the doc, and it doesn’t work.

```auto
type Person {
     name: String # Person.name is the auto-generated DQL predicate for this GraphQL field, unless overridden using @dgraph(pred: "...")
     nameHi: String @dgraph(pred:"Person.name@hi") # this field exposes the value for the language tag `@hi` for the DQL predicate `Person.name` to GraphQL
     nameEn: String @dgraph(pred:"Person.name@en")
     nameHi_En: String @dgraph(pred:"Person.name@hi:en") # this field uses multiple language tags: `@hi` and `@en`
     nameHi_En_untag: String @dgraph(pred:"Person.name@hi:en:.") # as this uses `.`, it will give untagged values if there is no value for `@hi` or `@en`
  }

```

After searching awhile, I found a thread that says 22.0 is based on a build that doesn’t have GraphQL language support. [RFC: Allow language Tag support in GraphQL - #13 by matthewmcneely - GraphQL - Discuss Dgraph](http://discuss.hypermode.com/t/rfc-allow-language-tag-support-in-graphql/13027/13)

So I tried v21.12.0 and it works!

## Will this feature be port back into v22?

Whats the reason of not having this feature in v22?

This is a critical feature for us to use DGraph, and we are so close to making our use case works.

Thanks! Appreciate any help here!

---

<div class="post-metadata">

### Author: ![Peter\_Liu](https://yyz1.discourse-cdn.com/flex007/user_avatar/discuss.dgraph.io/peter_liu/32/10307_2.png) [@Peter\_Liu](https://discuss.dgraph.io/u/Peter_Liu)
#### Post date: [February 27, 2023, 3:28am UTC](https://discuss.dgraph.io/t/language-support-missing-in-22-0-but-works-in-21-12/18322/2 "2023-02-27T03:28:50Z")

</div>

Hi all,

Can someone help confirm if this feature will be available in future build.

[https://dgraph.io/docs/graphql/dgraph/#language-support-in-graphql](https://dgraph.io/docs/graphql/dgraph/#language-support-in-graphql)

Is it recommended if we want to use v21.12 in production?

Will the data be incompatible if we upgrade to later version in the future?

Thanks.

Peter

---

<div class="post-metadata">

### Author: ![Raphael](https://yyz1.discourse-cdn.com/flex007/user_avatar/discuss.dgraph.io/raphael/32/10075_2.png) [@Raphael](https://discuss.dgraph.io/u/Raphael)
#### Post date: [February 27, 2023, 6:51pm UTC](https://discuss.dgraph.io/t/language-support-missing-in-22-0-but-works-in-21-12/18322/3 "2023-02-27T18:51:30Z")

</div>

This feature will be available in future build. Thanks for reporting this defect. I will check with engineering when it could be back …

---

<div class="post-metadata">

### Author: ![Peter\_Liu](https://yyz1.discourse-cdn.com/flex007/user_avatar/discuss.dgraph.io/peter_liu/32/10307_2.png) [@Peter\_Liu](https://discuss.dgraph.io/u/Peter_Liu)
#### Post date: [February 28, 2023, 11:54am UTC](https://discuss.dgraph.io/t/language-support-missing-in-22-0-but-works-in-21-12/18322/4 "2023-02-28T11:54:57Z")

</div>

Thanks for confirming this.
